blob: a2a2caafdc9903fb0f1784b7469441a659a9204a [file] [log] [blame]
enum TestEnum {
ONE(Constants1.xxx);
TestEnum(String str) {
}
private static class Constants1 {
public static final String xxx = "testString";
}
private class Constants {
void foo(){}
}
}