mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
12 lines
304 B
Java
12 lines
304 B
Java
import static <error descr="Cannot resolve symbol 'MyConstants'">MyConstants</error>.*;
|
|
import <error descr="Cannot resolve symbol 'MyConstants'">MyConstants</error>;
|
|
|
|
public class MyClient
|
|
{
|
|
private int field = MyConstants.CONSTANT;
|
|
}
|
|
|
|
class MyConstants
|
|
{
|
|
public static final int CONSTANT = 1;
|
|
} |