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