blob: 0eb6b929bd379195a10ab964c0c8e0e0ec086e58 [file] [log] [blame]
package generic_in;
public class TestMethodInstance2 {
String bar() {
return /*]*/foo()/*[*/;
}
private <T> T foo() {
T t= null;
return t;
}
}