Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1af03d3ca17fe7b28a8021a8863d10c7de116240 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package p;

class A<T> {
    class E implements I<T> {
        public void foo() {
            E m = (E) this;
        }
    }
}

interface I<K> {
}

Back to the top