diff options
author | Bulgakov Alexander <buls@yandex.ru> | 2019-05-08 23:34:37 +0300 |
---|---|---|
committer | Bulgakov Alexander <buls@yandex.ru> | 2019-05-08 23:34:37 +0300 |
commit | 1fec035aa546b7a033acb67cf4f7c1afb8a79f52 (patch) | |
tree | 7298ae1403107a153f4b6ea5b065018a86fc2d86 /test/transform/resource/before | |
parent | 8f8cbae631ff2e7091a2a9b70339b778177122cc (diff) | |
download | lombok-1fec035aa546b7a033acb67cf4f7c1afb8a79f52.tar.gz lombok-1fec035aa546b7a033acb67cf4f7c1afb8a79f52.tar.bz2 lombok-1fec035aa546b7a033acb67cf4f7c1afb8a79f52.zip |
#1976. [@val] improved raw generic type inference by eclipse compiler.
Diffstat (limited to 'test/transform/resource/before')
-rw-r--r-- | test/transform/resource/before/ValLambda.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/transform/resource/before/ValLambda.java b/test/transform/resource/before/ValLambda.java index 4ec73b82..d13221fd 100644 --- a/test/transform/resource/before/ValLambda.java +++ b/test/transform/resource/before/ValLambda.java @@ -11,6 +11,9 @@ class ValLambda { public void easyLubLambda() { lombok.val foo = (System.currentTimeMillis() > 0) ? (Runnable)()-> {} : System.out::println; + lombok.val foo2 = (System.currentTimeMillis() < 0) ? (java.util.function.Function) r -> "" : r -> System.currentTimeMillis(); + java.util.function.Function foo3 = (System.currentTimeMillis() < 0) ? (java.util.function.Function) r -> "" : r -> System.currentTimeMillis(); + lombok.val foo4 = (System.currentTimeMillis() < 0) ? (java.util.function.Function<String, String>) r -> "" : r -> String.valueOf(System.currentTimeMillis()); } // public void castLubLambda() { |