public class WithoutConflictsSwitchUsedDeconstruction { public record Point(int a, String b) { void foo(Object obj) { switch (obj) { case Point(int x, Object y) when x > 10 -> { } default -> { } } } } }