blob: e342e6365db2d8a4e5314f7e0cde84bb68ad48b3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import lombok.Getter;
public class GetterLazyInAnonymousClass {
Object annonymous = new Object() {
class Inner {
@Getter(lazy = true)
private final String string = "test";
}
};
}
|