blob: 424635ed13925eda3ecdd1073964f99c7e37690f (
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;
GetterWithDollar1() {
super();
}
public @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") int get$i() {
return this.$i;
}
}
class GetterWithDollar2 {
@lombok.Getter int $i;
@lombok.Getter int i;
GetterWithDollar2() {
super();
}
public @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") int get$i() {
return this.$i;
}
public @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") int getI() {
return this.i;
}
}
|