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