mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
12 lines
222 B
Java
12 lines
222 B
Java
public class Foo {
|
|
public static void main(String[] args) {
|
|
public void foo(int a) {
|
|
if (a == 0) {
|
|
}
|
|
<caret>
|
|
else if (a == 1) {
|
|
}
|
|
}
|
|
|
|
}
|
|
} |