mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-10 15:36:56 +07:00
9 lines
77 B
Java
9 lines
77 B
Java
class X {
|
|
int f;
|
|
|
|
void test(X x) {
|
|
m(x);
|
|
}
|
|
|
|
native void m(X x);
|
|
} |