blob: 40bbbcad077306b5e4db5459620ced96f7338386 (
plain)
1
2
3
4
5
6
7
8
9
10
|
@interface Annotation{}
aspect B {
declare @method : public * C.noSuchMethod(..) : @Annotation; // should be an error
declare @method : * B.noSuchMethod(..) : @Annotation; // should be an error
}
class C {
}
|