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