mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 18:50:54 +07:00
12 lines
338 B
Java
12 lines
338 B
Java
class Test {
|
|
public <T> T doStuff() {
|
|
return null;
|
|
}
|
|
public boolean test() {
|
|
<error descr="Incompatible types. Found: 'java.lang.Object', required: 'boolean'">return doStuff();</error>
|
|
}
|
|
|
|
public Boolean test1() {
|
|
return doStuff();
|
|
}
|
|
} |