mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
GitOrigin-RevId: 644b0312256a7cd2859f18ba261bfc83addfb672
12 lines
121 B
Plaintext
12 lines
121 B
Plaintext
class Test {
|
|
int i;
|
|
|
|
void handle() {
|
|
System.out.println(i);
|
|
run();
|
|
}
|
|
|
|
void run() {}
|
|
}
|
|
class Other {
|
|
} |