mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-16 08:39:59 +07:00
11 lines
225 B
Java
11 lines
225 B
Java
import static <error descr="Cannot resolve symbol 'MyConstants'">MyConstants</error>.*;
|
|
|
|
public class MyClient
|
|
{
|
|
private int field = MyConstants.CONSTANT;
|
|
}
|
|
|
|
class MyConstants
|
|
{
|
|
public static final int CONSTANT = 1;
|
|
} |