aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/i851.java
blob: cfd86ccc445aeb44d22a708854826f3a6054b11e (plain) (tree)
1
2
3
4
5
6
7
8






                             
                             
interface I<T> {}

interface J<T> extends I<T> {
    default void $init$() {
    };
}

class C<T> implements J<T> {}