summaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr132080/TestITD.aj
blob: 3203b82cf93dbe9b590aed179fd66dcf980d6f3d (plain)
1
2
3
4
5
6
7
8
public aspect TestITD {
	
	declare parents : AbstractSuperAspectWithInterface+ implements TestInterface;
	
	public void TestInterface.interfaceMethod () {
		System.out.println("? void TestITD.interfaceMethod()");
	}
}