aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/i851.java
blob: 39e0bf35031a6c5a3fed6ee3085e599762b0a7aa (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> extends J<T> {}