mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 01:20:53 +07:00
27 lines
616 B
Java
27 lines
616 B
Java
// "Unwrap 'if' statement extracting side effects" "true-preview"
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
class Test {
|
|
void foo(Object obj) {
|
|
if (!(obj instanceof Rect)) {
|
|
return;
|
|
}
|
|
if (<caret>obj instanceof Rect(Point(double x, double y) pos, Size(double w, double h) size) rect) {
|
|
System.out.println(rect);
|
|
System.out.println(rect.size());
|
|
System.out.println(pos);
|
|
System.out.println(pos.x());
|
|
System.out.println(h);
|
|
}
|
|
}
|
|
}
|
|
|
|
record Point(double x, double y) {
|
|
}
|
|
|
|
record Size(double w, double h) {
|
|
}
|
|
|
|
record Rect(@NotNull Point pos, @NotNull Size size) {
|
|
}
|