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