mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
14 lines
225 B
Java
14 lines
225 B
Java
class Demo {
|
|
void caller() {
|
|
test(1);
|
|
}
|
|
|
|
void test(int x) {
|
|
if (x > 0) {
|
|
System.out.println("hello");
|
|
System.out.println("hell<caret>o");
|
|
} else {
|
|
System.out.println("hello");
|
|
}
|
|
}
|
|
} |