mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-13 17:14:09 +07:00
11 lines
135 B
Java
11 lines
135 B
Java
import java.lang.Boolean;
|
|
|
|
class Test {
|
|
Boolean foo() {
|
|
return null;
|
|
}
|
|
|
|
void bar() {
|
|
<selection>foo()</selection>
|
|
}
|
|
} |