mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
12 lines
196 B
Java
12 lines
196 B
Java
class Test {
|
|
public static final String A<caret>BC = "abc";
|
|
void foo() {
|
|
System.out.println("abc");
|
|
}
|
|
}
|
|
|
|
class Foo {
|
|
void bar() {
|
|
System.out.println("abc");
|
|
}
|
|
} |