aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/SetterOnRecord.java
blob: d01037591b450dbd288ebe797992f413589ba207 (plain)
1
2
3
4
5
6
7
8
9
10
11
// version 14:
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;
  }
}