diff options
author | Bulgakov Alexander <buls@yandex.ru> | 2019-05-20 13:44:29 +0300 |
---|---|---|
committer | Bulgakov Alexander <buls@yandex.ru> | 2019-05-20 13:44:29 +0300 |
commit | cd49188aff9ffece51ce8831c961e0faab33fbc8 (patch) | |
tree | 6e0dc4c1f83216212823fa81d29865cf54e27cce /test/transform/resource/after-ecj | |
parent | 71aea086e4fa9d3fa77e29c5a208ef8e7458c387 (diff) | |
download | lombok-cd49188aff9ffece51ce8831c961e0faab33fbc8.tar.gz lombok-cd49188aff9ffece51ce8831c961e0faab33fbc8.tar.bz2 lombok-cd49188aff9ffece51ce8831c961e0faab33fbc8.zip |
#1976. one more test case
Diffstat (limited to 'test/transform/resource/after-ecj')
-rw-r--r-- | test/transform/resource/after-ecj/ValLambda.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/ValLambda.java b/test/transform/resource/after-ecj/ValLambda.java index e7cbb28e..fcb855b3 100644 --- a/test/transform/resource/after-ecj/ValLambda.java +++ b/test/transform/resource/after-ecj/ValLambda.java @@ -15,6 +15,7 @@ class ValLambda { public void easyLubLambda() { final @lombok.val java.lang.Runnable foo = ((System.currentTimeMillis() > 0) ? (Runnable) () -> { } : System.out::println); + final @lombok.val java.lang.Runnable foo1 = ((System.currentTimeMillis() > 0) ? (Runnable) System.out::println : System.out::println); final @lombok.val java.util.function.Function foo2 = ((System.currentTimeMillis() < 0) ? (java.util.function.Function) (<no type> r) -> "" : (<no type> r) -> System.currentTimeMillis()); java.util.function.Function foo3 = ((System.currentTimeMillis() < 0) ? (java.util.function.Function) (<no type> r) -> "" : (<no type> r) -> System.currentTimeMillis()); final @lombok.val java.util.function.Function<java.lang.String, java.lang.String> foo4 = ((System.currentTimeMillis() < 0) ? (java.util.function.Function<String, String>) (<no type> r) -> "" : (<no type> r) -> String.valueOf(System.currentTimeMillis())); |