mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 12:03:57 +07:00
GitOrigin-RevId: 08b9253ea9f105523645abdead3b8d0922297699
10 lines
147 B
Java
10 lines
147 B
Java
import org.jspecify.annotations.NullMarked;
|
|
|
|
@NullMarked
|
|
class X {
|
|
void m(X x) {}
|
|
|
|
void use() {
|
|
m(/*ca-nullable-to-not-null*/null);
|
|
}
|
|
} |