mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 06:39:33 +07:00
GitOrigin-RevId: 2f8f143e509eb686bc542ededd61aabe559214cf
11 lines
288 B
Java
11 lines
288 B
Java
package bar;
|
|
|
|
public class Outer {
|
|
private static final String SOME_CONSTANT = "someConstant";
|
|
public static void main(String[] args) {
|
|
String someString = SO<caret>;
|
|
switch(args[0]) {
|
|
case SO<caret> -> System.out.println(someString);
|
|
}
|
|
}
|
|
} |