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