mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
11 lines
150 B
Java
11 lines
150 B
Java
class X {
|
|
private int myI;
|
|
void foo() {
|
|
newMethod(this.myI);
|
|
}
|
|
|
|
private static void newMethod(int myI) {
|
|
int i = myI;
|
|
}
|
|
}
|