mirror of
https://github.com/tiennm99/lombok.git
synced 2026-07-29 20:21:13 +00:00
9 lines
153 B
Java
9 lines
153 B
Java
import lombok.experimental.Wither;
|
|
class WitherPlain {
|
|
@lombok.experimental.Wither int i;
|
|
@Wither final int foo;
|
|
|
|
WitherPlain(int i, int foo) {
|
|
}
|
|
}
|