aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr99191/pr99191_2.java
blob: aca5b53f26b861925ba8a4aef430db193fa1b871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@interface Annotation{}
aspect B {
	declare @field : int C.anotherField : @Annotation; // should be woven
	declare @field : int someField : @Annotation; // shouldn't have any errors
	declare @field : int C.aField : @Annotation; // shouldn't have any errors
}

class C {
	@Annotation int aField = 1;
}

aspect D {
	public int C.anotherField;
}