summaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/itds/AtOverride1.aj
blob: 519d796971e8239ceb745d34a226474b62bc40ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 1. child specifies override but there was no parent (error)

class Parent {

}

class Child extends Parent {

  @Override public void method() {} // ERROR, doesnt override anything

}

aspect Injector { }