mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 06:21:43 +00:00
9 lines
184 B
Java
9 lines
184 B
Java
//platform javac: positions in eclipse are hard...
|
|
class GetterLazyErrorPosition {
|
|
@lombok.Getter(lazy=true)
|
|
private final String field =
|
|
true ?
|
|
"" :
|
|
new ErrorPosition();
|
|
}
|