mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-13 23:07:01 +07:00
13 lines
178 B
Java
13 lines
178 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 <caret>;
|
|
}
|
|
}
|