aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr99191/pr99191_1.java
blob: f716b2748ec379fd991e8825b26eedfb68ecc140 (plain)
1
2
3
4
5
6
7
8
9
10
@interface Annotation{}
aspect B {
	
    declare @field : int C.noSuchField : @Annotation; // should be an error
	declare @field : int B.noSuchField : @Annotation; // should be an error
    
}

class C {
}