summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr99125/Aspects.aj
blob: 96fa6b4b645826fd6463f27414e508f7d1b5b2bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import p.*;

abstract aspect X {
		
	public void I.bar() {}
	
	public void pr99125.aMethod() {}
	
}

aspect Y extends X {
	
	public void I.goo() {};
	
	public void I.foo() { System.out.println("you got me"); }

}

aspect Z extends X {}