aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/SuperBuilderInAnonymousClass.java
blob: 238f42dffed97f1f2c2cb9e9c6d68c3c7451f540 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import lombok.experimental.SuperBuilder;
public class SuperBuilderInAnonymousClass {
  Object annonymous = new Object() {
    @SuperBuilder class InnerParent {
      private String string;
      InnerParent() {
        super();
      }
    }
    @SuperBuilder class InnerChild {
      private String string;
      InnerChild() {
        super();
      }
    }
    x() {
      super();
    }
  };
  public SuperBuilderInAnonymousClass() {
    super();
  }
}