aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ConstructorsConfiguration.java
blob: 47b0cc16ca55c84e8d05941c3bd7c27a37505ab2 (plain)
1
2
3
4
5
6
7
class ConstructorsConfiguration {
	int x;
	@java.lang.SuppressWarnings("all")
	public ConstructorsConfiguration(final int x) {
		this.x = x;
	}
}