mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
11 lines
223 B
Java
11 lines
223 B
Java
class Test {
|
|
|
|
void m() {
|
|
throwAnException(<warning descr="Passing 'null' argument to non annotated parameter">null</warning>);
|
|
}
|
|
|
|
static void throwAnException(String arg) {
|
|
throw new RuntimeException();
|
|
}
|
|
}
|