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

10 lines
131 B
Java

import org.jspecify.annotations.*;
class X {
int f;
void test(@Nullable X x) {
/*ca-nullable-to-not-null*/x.f = 1;
}
}