blob: 86325ce5f1e27bb263b4bc23a82190e8fd3de303 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import lombok.experimental.FieldNameConstants;
public class FieldNameConstantsInAnonymousClass {
Object annonymous = new Object() {
@FieldNameConstants
class Inner {
private String string;
}
};
}
|