mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
12 lines
237 B
Java
12 lines
237 B
Java
|
|
import java.io.IOException;
|
|
|
|
class MyTest {
|
|
|
|
private static void switchChain(final int i) throws IOException {
|
|
int g = switch (i) {
|
|
default -> throw new IOException(<selection>""</selection>);
|
|
};
|
|
|
|
}
|
|
} |