aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/ConstructorsConfiguration.java
blob: 2e88a59fa14b338747c2917cb63d0af78230cd0f (plain)
1
2
3
4
5
6
7
@lombok.AllArgsConstructor class ConstructorsConfiguration {
  int x;
  public @java.lang.SuppressWarnings("all") ConstructorsConfiguration(final int x) {
    super();
    this.x = x;
  }
}