mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 07:32:21 +07:00
10 lines
213 B
Java
10 lines
213 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
class BrokenAlignment {
|
|
|
|
void test(@Nullable String n) {
|
|
switch (<warning descr="Dereference of 'n' may produce 'NullPointerException'">n</warning>) {
|
|
|
|
}
|
|
}
|
|
} |