mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
GitOrigin-RevId: 0f709e869db16fe75318864e45bda2bed6b9e4f6
6 lines
170 B
Java
6 lines
170 B
Java
import org.jetbrains.annotations.*;
|
|
|
|
class Test {
|
|
<warning descr="Not-null fields must be initialized">@NotNull</warning> String explicit;
|
|
@NotNull String implicit;
|
|
} |