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