mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
234 B
Java
17 lines
234 B
Java
class Mapping1 {
|
|
private int myInt;
|
|
public void <caret>method() {
|
|
int i = myInt;
|
|
}
|
|
public void context() {
|
|
int i = myInt;
|
|
}
|
|
}
|
|
|
|
class Mapping2 {
|
|
private int myInt;
|
|
public void context() {
|
|
int i = myInt;
|
|
}
|
|
}
|