aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/BuilderSimple.java
blob: 83c89713352363bb6f85cfe0a1e194cf8bad294f (plain)
1
2
3
4
5
6
7
8
9
import java.util.List;

@lombok.Builder
class BuilderSimple<T> {
	private final int noshow = 0;
	private final int yes;
	private List<T> also;
	private int $butNotMe;
}