diff options
author | bulgakovalexander <mfourgeneralsherman@gmail.com> | 2016-10-20 16:47:35 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-20 16:47:35 +0300 |
commit | 4d9da60f4f2643302e53267ef150ee4c68c39d7c (patch) | |
tree | 6986510d8a45e2cca4fcb81d87a3d675032a0c10 /test/transform/resource/before | |
parent | aa2f4424a78b962edf0b7e0ef551a82c5822619a (diff) | |
parent | 49f0bc1c3ede3c81754568af22fcdbbe8f4b5a8f (diff) | |
download | lombok-4d9da60f4f2643302e53267ef150ee4c68c39d7c.tar.gz lombok-4d9da60f4f2643302e53267ef150ee4c68c39d7c.tar.bz2 lombok-4d9da60f4f2643302e53267ef150ee4c68c39d7c.zip |
Merge pull request #1 from rzwitserloot/master
merge from the main repo
Diffstat (limited to 'test/transform/resource/before')
-rw-r--r-- | test/transform/resource/before/ValFinal.java | 6 | ||||
-rw-r--r-- | test/transform/resource/before/ValInLambda.java | 21 |
2 files changed, 27 insertions, 0 deletions
diff --git a/test/transform/resource/before/ValFinal.java b/test/transform/resource/before/ValFinal.java new file mode 100644 index 00000000..3c5af366 --- /dev/null +++ b/test/transform/resource/before/ValFinal.java @@ -0,0 +1,6 @@ +import lombok.val; +public class ValFinal { + public void test() { + final val x = 10; + } +}
\ No newline at end of file diff --git a/test/transform/resource/before/ValInLambda.java b/test/transform/resource/before/ValInLambda.java new file mode 100644 index 00000000..2c2a5942 --- /dev/null +++ b/test/transform/resource/before/ValInLambda.java @@ -0,0 +1,21 @@ +// version 8: + +import lombok.val; + +class ValInLambda { + Runnable foo = (Runnable) () -> { + val i = 1; + }; + + public void easyLambda() { + Runnable foo = (Runnable) () -> { + val i = 1; + }; + } + + public void easyIntersectionLambda() { + Runnable foo = (Runnable) () -> { + val i = 1; + }; + } +} |