mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: 08b9253ea9f105523645abdead3b8d0922297699
10 lines
131 B
Java
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;
|
|
}
|
|
}
|