aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs151/pr133307/Broken.aj
blob: 30f2ef2ba714c35c19b2336fb96c6371bab4d72b (plain)
1
2
3
4
5
6
7
interface TestIF<T extends TestIF> {}

class TestClass {}

aspect TestAspect {
   declare parents: TestClass implements TestIF<TestClass>;
}