blob: b102ba66b1fc0e91e94a8fc4d709c3e7f51c2ead (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
class GetterWithDollar1 {
@lombok.Getter int $i;
public @java.lang.SuppressWarnings("all") int get$i() {
return this.$i;
}
GetterWithDollar1() {
super();
}
}
class GetterWithDollar2 {
@lombok.Getter int $i;
@lombok.Getter int i;
public @java.lang.SuppressWarnings("all") int get$i() {
return this.$i;
}
public @java.lang.SuppressWarnings("all") int getI() {
return this.i;
}
GetterWithDollar2() {
super();
}
}
|