summaryrefslogtreecommitdiff
path: root/test/files/pos/super/Super_1.java
blob: 418ae96bc0733a9006e351871540873731e18085 (plain) (blame)
1
2
3
4
5
6
// A.java
interface Inter<T> { }

class Super implements Inter<Super.Inner> {  
  public class Inner { };
}