import static MyConstants.*;
import MyConstants;
import MyConstants.Inner;
import static MyConstants.Inner.*;
import static MyConstants.Inner.INNER_CONSTANT;
class MyClient
{
private int field = MyConstants.CONSTANT;
}
class MyConstants
{
public static final int CONSTANT = 1;
public static class Inner {
public static final String INNER_CONSTANT = "const";
}
}