mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
11 lines
183 B
Java
11 lines
183 B
Java
package p;
|
|
import static p.Foo.FOO;
|
|
class Foo {
|
|
public static final String FOO = "foo";
|
|
}
|
|
class Test {
|
|
public void method() {
|
|
String f<caret>oo = new String(FOO);
|
|
}
|
|
}
|