aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/bugs/PR95992.java
blob: 824967fe962e2bf7821cbd5f30ef64568924891b (plain)
1
2
3
4
5
6
7
8
interface Base<T> {
    static interface Inner {
    }
}
class Test<T extends Test.InnerTest> implements Base<T> {
    static class InnerTest implements Inner {
    }
}