org.aspectj/tests/bugs162/pr247683/A.java

13 řádky
206 B
Java

import java.lang.annotation.*;
@Retention(RetentionPolicy.RUNTIME)
@interface I {}
aspect X {
declare warning: execution(* *(@(@I *) *)): "";
}
public class A {
public void foo(@I boolean[] bs) {}
}