blob: b395f144c16fb8b477d48f5361f5ee83df2fbc59 [file] [log] [blame]
package generic_out;
public class TestMethodInstance2 {
String bar() {
String t= null;
return t;
}
private <T> T foo() {
T t= null;
return t;
}
}