mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-31 20:17:43 +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();
|
|
}
|
|
}
|