mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
22 lines
358 B
Java
22 lines
358 B
Java
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class X {
|
|
@NotNull
|
|
public X fun1(int x) {
|
|
return this;
|
|
}
|
|
|
|
public X fun2(@Nullable @SuppressWarnings("unused") String b) {
|
|
<selection>
|
|
if (b != null) {
|
|
int x = 1;
|
|
return fun1(x);
|
|
}
|
|
</selection>
|
|
|
|
int x = 0;
|
|
return null;
|
|
}
|
|
}
|