mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-27 12:36:03 +07:00
17 lines
201 B
Java
17 lines
201 B
Java
class Test {
|
|
public int m() {
|
|
return m(0);
|
|
}
|
|
|
|
public int m(int anObject) {
|
|
return anObject;
|
|
}
|
|
}
|
|
|
|
class Test1 {
|
|
Test t;
|
|
|
|
public int n(int v) {
|
|
return t.m();
|
|
}
|
|
} |