aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/WithByOnRecord.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2021-03-22 11:38:56 +0100
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2021-03-22 11:38:56 +0100
commit3400f66fa70da6664e91d98cc63d8ea959979606 (patch)
treef02f94deb1ab6baac73738e58ce8ffb8957b8935 /test/transform/resource/after-delombok/WithByOnRecord.java
parentbcd05a01b14705678dfd280989fa5071b627a234 (diff)
downloadlombok-3400f66fa70da6664e91d98cc63d8ea959979606.tar.gz
lombok-3400f66fa70da6664e91d98cc63d8ea959979606.tar.bz2
lombok-3400f66fa70da6664e91d98cc63d8ea959979606.zip
[deps] pushing ASM to 9.1, and ASM opcode compat levels to ASM9, as we need the support for records
Diffstat (limited to 'test/transform/resource/after-delombok/WithByOnRecord.java')
-rw-r--r--test/transform/resource/after-delombok/WithByOnRecord.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/transform/resource/after-delombok/WithByOnRecord.java b/test/transform/resource/after-delombok/WithByOnRecord.java
index d6a24a9a..6df5c9c4 100644
--- a/test/transform/resource/after-delombok/WithByOnRecord.java
+++ b/test/transform/resource/after-delombok/WithByOnRecord.java
@@ -1,9 +1,9 @@
+// version 14:
record WithByOnRecord(String a, String b) {
@java.lang.SuppressWarnings("all")
public WithByOnRecord withABy(final java.util.function.Function<? super String, ? extends String> transformer) {
return new WithByOnRecord(transformer.apply(this.a), this.b);
}
-
@java.lang.SuppressWarnings("all")
public WithByOnRecord withBBy(final java.util.function.Function<? super String, ? extends String> transformer) {
return new WithByOnRecord(this.a, transformer.apply(this.b));