mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-11 00:06:57 +07:00
10 lines
91 B
Java
10 lines
91 B
Java
import org.jspecify.nullness.*;
|
|
|
|
class X {
|
|
int f;
|
|
|
|
void test(X x) {
|
|
x.f = 1;
|
|
}
|
|
}
|