mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-09 05:36:54 +07:00
13 lines
183 B
Java
13 lines
183 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 A foo(){
|
|
return A.ONE;<caret>
|
|
}
|
|
}
|