aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/GetterLazy.java
blob: 51c7a921e55c0ec2901d5a22e8dcf9305e8617f9 (plain)
1
2
3
4
5
6
7
class GetterLazy {
	static class ValueType {
	}
	
	@lombok.Getter(lazy=true)
	private final ValueType fieldName = new ValueType();
}