diff options
Diffstat (limited to 'test/transform/resource/before/ValWithSelfRefGenerics.java')
-rw-r--r-- | test/transform/resource/before/ValWithSelfRefGenerics.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/transform/resource/before/ValWithSelfRefGenerics.java b/test/transform/resource/before/ValWithSelfRefGenerics.java new file mode 100644 index 00000000..d0532606 --- /dev/null +++ b/test/transform/resource/before/ValWithSelfRefGenerics.java @@ -0,0 +1,14 @@ +import lombok.val; +public class ValWithSelfRefGenerics { + public void run(Thing<? extends Comparable<?>> thing, Thing<?> thing2, java.util.List<? extends Number> z) { + val y = z; + val x = thing; + val w = thing2; + val v = thing2.get(); + } +} +class Thing<T extends Comparable<? super T>> { + public T get() { + return null; + } +} |