aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/GetterWithDollar.java
blob: 520f4ea5a885d58d3120e9bcbfd7e06eaccec739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class GetterWithDollar1 {
	int $i;
	@java.lang.SuppressWarnings("all")
	public int get$i() {
		return this.$i;
	}
}
class GetterWithDollar2 {
	int $i;
	int i;
	@java.lang.SuppressWarnings("all")
	public int get$i() {
		return this.$i;
	}
	@java.lang.SuppressWarnings("all")
	public int getI() {
		return this.i;
	}
}