aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/ConstructorsWithAccessors.java
blob: e5d2939f045b7d5976932eb4eba40aed8a4d5bd0 (plain)
1
2
3
4
5
6
@lombok.AllArgsConstructor @lombok.experimental.Accessors(prefix={"p", "_"}) class ConstructorsWithAccessors {
	int plower;
	int pUpper;
	int _huh;
	int __huh2;
}