Skip to content

Commit 4d02893

Browse files
committed
Assure that synthetic field is retained.
1 parent e4e62f1 commit 4d02893

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

byte-buddy-dep/src/test/java/net/bytebuddy/description/field/AbstractFieldDescriptionTest.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,11 @@ private static class DeprecationSample {
268268
}
269269

270270
private class SyntheticField {
271-
/* empty */
271+
272+
@SuppressWarnings("unused")
273+
Object m() { // Since Java 18, a reference to the outer class is required to retain the synthetic field.
274+
return AbstractFieldDescriptionTest.this;
275+
}
272276
}
273277

274278
private static class TransientSample {

0 commit comments

Comments
 (0)