mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
12 lines
144 B
Java
12 lines
144 B
Java
class Test {
|
|
int m(int anObject) {
|
|
return anObject;
|
|
}
|
|
}
|
|
|
|
class X3 {
|
|
int n() {
|
|
Test t;
|
|
return t.m(0);
|
|
}
|
|
} |