mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 01:41:11 +07:00
GitOrigin-RevId: ab11e0d6adbe186099a707d1260670965f5ba260
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");
|
|
}
|
|
}
|
|
} |