mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 16:21:25 +00:00
12 lines
316 B
Java
12 lines
316 B
Java
// issue #3014: Builder check if its on a non-static inner class and errors if it is. But it was erroring here even though it is on a static inner class.
|
|
class BuilderNestedInEnum {
|
|
public enum TestEnum {
|
|
FOO, BAR;
|
|
|
|
@lombok.Builder
|
|
@lombok.Value
|
|
public static class TestBuilder {
|
|
String field;
|
|
}
|
|
}
|
|
} |