summaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/itds/AtOverride5.aj
blob: aa93047728f06c27a0567abe5c35fa9979b1dec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 5. child placed by ITD, @override on child, no parent (error)

class Parent {
}

class Child extends Parent {
}

aspect Injector { 

  @Override public void Child.method() {}  // ERROR, no parent

}