mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: 08b9253ea9f105523645abdead3b8d0922297699
11 lines
159 B
Java
11 lines
159 B
Java
import org.jspecify.annotations.*;
|
|
|
|
class X {
|
|
int f;
|
|
|
|
void test(@Nullable X x) {
|
|
m(/*ca-nullable-to-not-null*/x);
|
|
}
|
|
|
|
native void m(@NonNull X x);
|
|
} |