aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/GetterLazyEahcToString.java
blob: 60509257c9cc0db7d5466a7c21858fb4ae878690 (plain)
1
2
3
4
5
6
@lombok.EqualsAndHashCode(doNotUseGetters = true)
@lombok.ToString(doNotUseGetters = true)
class GetterLazyEahcToString {
	@lombok.Getter(lazy=true)
	private final String value = "";
}