blob: 167ac51a3f3cf4ee07248f76fc43daf59b4161b4 [file] [log] [blame]
class Test {
public <T> T doStuff() {
return null;
}
public boolean test() {
return doStuff();
}
public Boolean test1() {
return doStuff();
}
}