summaryrefslogtreecommitdiffstats
path: root/tests/bugs171/pr384398_2/B.java
blob: 3e3868445fc25de2e77deead47d5427d76b0161a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package de.example;

public class B extends A<String> {
/*
    InnerA someMethod(){
        A<String> as = new A<String>();
        return as.new InnerA();
    }

    InnerA someOtherMethod() {
        return someMethod();
    }
*/
}