diff options
author | Roel Spilker <r.spilker@gmail.com> | 2014-05-08 01:14:06 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2014-05-08 01:14:06 +0200 |
commit | 22c5e0daaf6b56c85a59027a890efe9ed3e217e8 (patch) | |
tree | d45af675c906710ee8b125947bb14ea420abfe35 /test/transform/resource/after-delombok/ValLambda.java | |
parent | 8bfed5d51c274dccab23bda58440d63ba852f219 (diff) | |
download | lombok-22c5e0daaf6b56c85a59027a890efe9ed3e217e8.tar.gz lombok-22c5e0daaf6b56c85a59027a890efe9ed3e217e8.tar.bz2 lombok-22c5e0daaf6b56c85a59027a890efe9ed3e217e8.zip |
[java8] Added tests for using java language features in transformations.
Diffstat (limited to 'test/transform/resource/after-delombok/ValLambda.java')
-rw-r--r-- | test/transform/resource/after-delombok/ValLambda.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/ValLambda.java b/test/transform/resource/after-delombok/ValLambda.java new file mode 100644 index 00000000..0b13b5a1 --- /dev/null +++ b/test/transform/resource/after-delombok/ValLambda.java @@ -0,0 +1,21 @@ +// version 8: +class ValLambda { + public void easyLambda() { + final java.lang.Runnable foo = (Runnable)() -> { + }; + } + public void easyIntersectionLambda() { + final java.lang.Object foo = (Runnable & java.io.Serializable)() -> { + }; + final java.lang.Object bar = (java.io.Serializable & Runnable)() -> { + }; + } + public void easyLubLambda() { + final java.lang.Runnable foo = (System.currentTimeMillis() > 0) ? (Runnable)() -> { + } : (Runnable)System.out::println; + } +// public void castLubLambda() { +// Runnable foo = (Runnable)((System.currentTimeMillis() > 0) ? ()-> {} : System.out::println); +// lombok.val foo = (Runnable)((System.currentTimeMillis() > 0) ? ()-> {} : System.out::println); +// } +}
\ No newline at end of file |