mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 18:50:54 +07:00
12 lines
248 B
Java
12 lines
248 B
Java
class Test {
|
|
public <T> T doStuff() {
|
|
return null;
|
|
}
|
|
public boolean test() {
|
|
return doStuff();
|
|
}
|
|
|
|
public Boolean test1() {
|
|
return doStuff();
|
|
}
|
|
} |