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