mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 20:05:16 +07:00
GitOrigin-RevId: ec42a9047ba63b0cbaddd8357d11ae2ed56ed6b6
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>);
|
|
};
|
|
|
|
}
|
|
} |