bump highest language level to 14, prepare to remove 13_preview

GitOrigin-RevId: ec42a9047ba63b0cbaddd8357d11ae2ed56ed6b6
This commit is contained in:
Anna Kozlova
2020-04-01 14:07:24 +02:00
committed by intellij-monorepo-bot
parent dd3433cd18
commit bd1a21a02a
85 changed files with 24 additions and 17 deletions

View File

@@ -0,0 +1,12 @@
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>);
};
}
}