mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-31 18:19:55 +00:00
850c3eaf07
And as expected the tests shows that @Synchronized and @SneakyThrows are currently broken for eclipse but not for ecj.
23 lines
456 B
Java
23 lines
456 B
Java
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();
|
|
}
|
|
}
|