mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-01 22:22:27 +00:00
8 lines
221 B
Java
8 lines
221 B
Java
abstract class WitherWithAbstract {
|
|
@lombok.experimental.Wither String foo;
|
|
WitherWithAbstract() {
|
|
super();
|
|
}
|
|
public abstract @java.lang.SuppressWarnings("all") WitherWithAbstract withFoo(final String foo);
|
|
}
|