mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: 2f895cdc66ded3ec8fb4c59843c1969e95f1c2d1
10 lines
156 B
Java
10 lines
156 B
Java
class Test {
|
|
int i;
|
|
void run(int i) {}
|
|
}
|
|
class Other {
|
|
static void <caret>run(Test test) {
|
|
System.out.println(test.i);
|
|
test.run(test.i);
|
|
}
|
|
} |