summaryrefslogtreecommitdiffstats
path: root/tests/bugs/MultipleSuperCf.java
blob: 51404a33fd3f8251ab96b9d5e72bd14e83dda2c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import org.aspectj.testing.Tester;

interface B1 { }
interface B2 { }

interface D extends B1, B2 {}

aspect A {
	public int B1.m() {
		return 2;
	}
	
	public int D.m() {
		return super.m();  // CE even though B1.m is the only thing that makes sense
	}
}