Files
2023-07-10 13:50:14 +00:00

10 lines
94 B
Java

import org.jspecify.annotations.*;
class X {
int f;
void test(X x) {
x.f = 1;
}
}