diff options
author | Bulgakov Alexander <abulgakov@at-consulting.ru> | 2016-09-22 14:48:41 +0300 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2016-10-17 22:32:21 +0200 |
commit | 0f0cb68eac20c6f02b77c1fade88cdad8b7d85a2 (patch) | |
tree | b65bf412b5b17b2852ba5d21a11c9556a3435315 /test/transform/resource/after-delombok | |
parent | 444d77faa2836c7adf31fab0c8f601b4058d4130 (diff) | |
download | lombok-0f0cb68eac20c6f02b77c1fade88cdad8b7d85a2.tar.gz lombok-0f0cb68eac20c6f02b77c1fade88cdad8b7d85a2.tar.bz2 lombok-0f0cb68eac20c6f02b77c1fade88cdad8b7d85a2.zip |
added supporting for @val variables inside lambdas.
Diffstat (limited to 'test/transform/resource/after-delombok')
-rw-r--r-- | test/transform/resource/after-delombok/ValFinal.java | 5 | ||||
-rw-r--r-- | test/transform/resource/after-delombok/ValInLambda.java | 18 |
2 files changed, 23 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/ValFinal.java b/test/transform/resource/after-delombok/ValFinal.java new file mode 100644 index 00000000..d35ca713 --- /dev/null +++ b/test/transform/resource/after-delombok/ValFinal.java @@ -0,0 +1,5 @@ +public class ValFinal { + public void test() { + final int x = 10; + } +}
\ No newline at end of file diff --git a/test/transform/resource/after-delombok/ValInLambda.java b/test/transform/resource/after-delombok/ValInLambda.java new file mode 100644 index 00000000..7ce1e1b4 --- /dev/null +++ b/test/transform/resource/after-delombok/ValInLambda.java @@ -0,0 +1,18 @@ +// version 8: +class ValInLambda { + Runnable foo = (Runnable) () -> { + final int i = 1; + }; + + public void easyLambda() { + Runnable foo = (Runnable) () -> { + final int i = 1; + }; + } + + public void easyIntersectionLambda() { + Runnable foo = (Runnable) () -> { + final int i = 1; + }; + } +} |