blob: 2100f1c2e8d6701c35af3c3b26cc02b531c2896d [file] [log] [blame]
class Test {
void bar() {
String str = foo();
}
static <T> T foo(){
return InnerClass.invoke();
}
private static class InnerClass {
private static <T> T invoke() {
return null;
}
}
}