mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
9 lines
214 B
Java
9 lines
214 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
class Foo {
|
|
void main() {
|
|
foo(<warning descr="Argument '(String) null' might be null">(String) nu<caret>ll</warning>);
|
|
}
|
|
|
|
static void foo(@NotNull String s) {}
|
|
} |