aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/ToStringExplicitIncludeConf.java
blob: ee49c754c5835a4a595038ee0ab87dffaff0deb0 (plain)
1
2
3
4
5
6
7
//CONF: lombok.toString.onlyExplicitlyIncluded = true

@lombok.ToString
class ToStringExplicitIncludeConf {
	int x;
	@lombok.ToString.Include int y;
}