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