mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
17 lines
224 B
Plaintext
17 lines
224 B
Plaintext
class Mapping1 {
|
|
private int myInt;
|
|
public void method() {
|
|
int i = myInt;
|
|
}
|
|
public void context() {
|
|
method();
|
|
}
|
|
}
|
|
|
|
class Mapping2 {
|
|
private int myInt;
|
|
public void context() {
|
|
int i = myInt;
|
|
}
|
|
}
|