mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
14 lines
192 B
Java
14 lines
192 B
Java
class A{
|
|
public static final A ONE = new A();
|
|
public static final A TWO = new A();
|
|
public static final A THREE = new A();
|
|
}
|
|
|
|
class B{
|
|
|
|
static void foo(){}
|
|
{
|
|
A a = <caret>B.foo();'
|
|
}
|
|
}
|