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