You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

A.java 206B

123456789101112
  1. import java.lang.annotation.*;
  2. @Retention(RetentionPolicy.RUNTIME)
  3. @interface I {}
  4. aspect X {
  5. declare warning: execution(* *(@(@I *) *)): "";
  6. }
  7. public class A {
  8. public void foo(@I boolean[] bs) {}
  9. }