aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/SetterOnRecord.java
blob: c9d3764ff9773169d63ffa5c2d78b2ca6713d65a (plain)
1
2
3
4
5
6
7
8
9
10
import lombok.Setter;
@Setter record SetterOnRecord(String a, String b) {
/* Implicit */  private final String a;
/* Implicit */  private final String b;
  public SetterOnRecord(String a, String b) {
    super();
    .a = a;
    .b = b;
  }
}