mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 04:11:31 +07:00
GitOrigin-RevId: 2f895cdc66ded3ec8fb4c59843c1969e95f1c2d1
12 lines
124 B
Plaintext
12 lines
124 B
Plaintext
class Test {
|
|
int i;
|
|
|
|
void run() {
|
|
System.out.println(i);
|
|
run(i);
|
|
}
|
|
|
|
void run(int i) {}
|
|
}
|
|
class Other {
|
|
} |