Files
2013-09-20 12:11:57 +04:00

13 lines
249 B
Java

class Test {
public <T> T doStuff() {
return null;
}
public boolean test() {
return doStuff();
}
public Boolean test1() {
return doStuff();
}
}