mirror of
https://github.com/tiennm99/lombok.git
synced 2026-06-07 22:13:36 +00:00
850c3eaf07
And as expected the tests shows that @Synchronized and @SneakyThrows are currently broken for eclipse but not for ecj.
10 lines
165 B
Java
10 lines
165 B
Java
class GetFoo {
|
|
private @lombok.Getter int foo;
|
|
public @java.lang.SuppressWarnings("all") int getFoo() {
|
|
return this.foo;
|
|
}
|
|
GetFoo() {
|
|
super();
|
|
}
|
|
}
|