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.
13 lines
288 B
Java
13 lines
288 B
Java
import lombok.Getter;
|
|
public class CommentsInterspersed {
|
|
private int x;
|
|
private @Getter String test = "foo";
|
|
public @java.lang.SuppressWarnings("all") String getTest() {
|
|
return this.test;
|
|
}
|
|
public CommentsInterspersed() {
|
|
super();
|
|
}
|
|
public native void gwtTest();
|
|
}
|