Files
2021-09-17 14:29:49 +00:00

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");
}
}
}