// "Add missing nested pattern" "false" class Main { void foo(Object obj) { if (obj instanceof Point(int x)) { } } record Point(double x, double y) {} }