mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
switch expressions: highlight break values (IDEA-204569)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
class Main {
|
||||
public static void main(String[] args) {
|
||||
String s = switch (args.length) {
|
||||
case 1:
|
||||
br<caret>eak "abc";
|
||||
default:
|
||||
break "";
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user