mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
[tests] makes value break tests to use yields instead
GitOrigin-RevId: 338f0f743f27e771acef1d69f5034a6e7d1f1fcc
This commit is contained in:
committed by
intellij-monorepo-bot
parent
0a227e551d
commit
9692dc589a
@@ -2,9 +2,9 @@ class Main {
|
||||
public static void main(String[] args) {
|
||||
String s = switch (args.length) {
|
||||
case 1:
|
||||
br<caret>eak "abc";
|
||||
<caret>yield "abc";
|
||||
default:
|
||||
break "";
|
||||
yield "";
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user