aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/ValueInAnonymousClass.java
blob: c0bde2abc437847cbe893aeca844e0dad6b3415b (plain)
1
2
3
4
5
6
7
8
9
10
import lombok.Value;

public class ValueInAnonymousClass {
	Object annonymous = new Object() {
		@Value
		class Inner {
			private String string;
		}
	};
}