aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/WitherAlreadyExists.java
blob: 7833173a515998ab1b8f9107ee9524a76dfc0d74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
class Wither1 {
	@lombok.experimental.Wither boolean foo;
	
	void withFoo(boolean foo) {
	}
	
	Wither1(boolean foo) {
	}
}

class Wither2 {
	@lombok.experimental.Wither boolean foo;
	
	void withFoo(String foo) {
	}
	
	Wither2(boolean foo) {
	}
}

class Wither3 {
	@lombok.experimental.Wither String foo;
	
	void withFoo(boolean foo) {
	}
	
	Wither3(String foo) {
	}
}

class Wither4 {
	@lombok.experimental.Wither String foo;
	
	void withFoo(String foo) {
	}
	
	Wither4(String foo) {
	}
}

class Wither5 {
	@lombok.experimental.Wither String foo;
	
	void withFoo() {
	}
	
	Wither5(String foo) {
	}
}

class Wither6 {
	@lombok.experimental.Wither String foo;
	
	void withFoo(String foo, int x) {
	}
	
	Wither6(String foo) {
	}
}

class Wither7 {
	@lombok.experimental.Wither String foo;
	
	void withFoo(String foo, Object... x) {
	}
	
	Wither7(String foo) {
	}
}

class Wither8 {
	@lombok.experimental.Wither boolean isFoo;
	
	void withIsFoo(boolean foo) {
	}
	
	Wither8(boolean foo) {
	}
}

class Wither9 {
	@lombok.experimental.Wither boolean isFoo;
	
	void withFoo(boolean foo) {
	}
	
	Wither9(boolean foo) {
	}
}