mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 12:52:30 +07:00
GitOrigin-RevId: ec42a9047ba63b0cbaddd8357d11ae2ed56ed6b6
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);
|
|
}
|
|
};
|
|
|
|
}
|
|
} |