mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 08:34:22 +07:00
GitOrigin-RevId: a134aead43faf095ac3ccec4fb24af23c8f241a7
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);
|
|
} |