diff options
author | Rawi01 <Rawi01@users.noreply.github.com> | 2021-03-25 19:47:59 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2021-04-01 21:54:33 +0200 |
commit | 462aedcfc3a6948d2f09659961122b8eb2e35fc7 (patch) | |
tree | 8db733b9f8002f6d3fd660ca8a9c0cc6bdc95c1d /test/transform/resource/after-ecj/ValInLambda.java | |
parent | 9b3e84717d301d7a6829420f5849cf1465e73131 (diff) | |
download | lombok-462aedcfc3a6948d2f09659961122b8eb2e35fc7.tar.gz lombok-462aedcfc3a6948d2f09659961122b8eb2e35fc7.tar.bz2 lombok-462aedcfc3a6948d2f09659961122b8eb2e35fc7.zip |
[fixes #2787] Handle right hand side of assignment first
Diffstat (limited to 'test/transform/resource/after-ecj/ValInLambda.java')
-rw-r--r-- | test/transform/resource/after-ecj/ValInLambda.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/ValInLambda.java b/test/transform/resource/after-ecj/ValInLambda.java index 0fac61e9..1f56ee3f 100644 --- a/test/transform/resource/after-ecj/ValInLambda.java +++ b/test/transform/resource/after-ecj/ValInLambda.java @@ -1,3 +1,5 @@ +import java.util.function.Function; +import java.util.function.Supplier; import lombok.val; class ValInLambda { Runnable foo = (Runnable) () -> { @@ -24,4 +26,11 @@ class ValInLambda { } : System.out::println); }; } + public void inParameter() { + final @val java.util.function.Function<java.util.function.Supplier<java.lang.String>, java.lang.String> foo = (Function<Supplier<String>, String>) (<no type> s) -> s.get(); + final @val java.lang.String foo2 = foo.apply(() -> { + final @val java.lang.String bar = ""; + return bar; +}); + } } |