mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-22 10:34:25 +07:00
17 lines
277 B
Java
17 lines
277 B
Java
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Test {
|
|
void f(@Nullable final Object x) {
|
|
if (x != null) {
|
|
class C {
|
|
C(@NotNull Object x) {
|
|
}
|
|
|
|
C() {
|
|
this(x);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |