aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs160/pr206911/VerifyError.java
blob: 3db8dddf751d322b41dafbed666b27ba7585d5cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package bugs;

class GenericClass< K > {
          public void f() {}
}
class ExtendsGenericHasITD extends GenericClass< Object > {}

public aspect VerifyError {
          public void ExtendsGenericHasITD.f() {
                   super.f();
          }
          public static void main( String[] args ) {
                   new ExtendsGenericHasITD();
          }
}