// "Lift 'throw' out of 'switch' expression" "true-preview" class Foo { int bar() { throw switch (7) { default -> { class LocalClass { public void fooBar() { throw new RuntimeException("local classs"); } } yield new RuntimeException("message"); } }; } }