aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ValLambda.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-05-21 23:22:18 +0200
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-05-21 23:22:18 +0200
commit8f69331ce8d120c3a0c8440c805aab0b5e458e6d (patch)
treebf59e20b05c4dda5c6539efac50ccbecf4c1be61 /test/transform/resource/after-delombok/ValLambda.java
parent56aabf5465918bd167c67fe46d56e72968c5cea3 (diff)
parent2704f073aad6deb362707e0311b6275cde7c5e1a (diff)
downloadlombok-8f69331ce8d120c3a0c8440c805aab0b5e458e6d.tar.gz
lombok-8f69331ce8d120c3a0c8440c805aab0b5e458e6d.tar.bz2
lombok-8f69331ce8d120c3a0c8440c805aab0b5e458e6d.zip
Merge branch 'bulgakovalexander-feature/typeInferenceImprovements'
Diffstat (limited to 'test/transform/resource/after-delombok/ValLambda.java')
-rw-r--r--test/transform/resource/after-delombok/ValLambda.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/transform/resource/after-delombok/ValLambda.java b/test/transform/resource/after-delombok/ValLambda.java
index 9214b490..00ff27ad 100644
--- a/test/transform/resource/after-delombok/ValLambda.java
+++ b/test/transform/resource/after-delombok/ValLambda.java
@@ -5,17 +5,17 @@ class ValLambda {
};
}
public void easyIntersectionLambda() {
- final java.lang.Object foo = (Runnable & java.io.Serializable) () -> {
+ final java.lang.Runnable foo = (Runnable & java.io.Serializable) () -> {
};
- final java.lang.Object bar = (java.io.Serializable & Runnable) () -> {
+ final java.io.Serializable bar = (java.io.Serializable & Runnable) () -> {
};
}
public void easyLubLambda() {
final java.lang.Runnable foo = (System.currentTimeMillis() > 0) ? (Runnable) () -> {
- } : (Runnable) System.out::println;
+ } : System.out::println;
+ final java.lang.Runnable foo1 = (System.currentTimeMillis() > 0) ? (Runnable) System.out::println : System.out::println;
+ final java.util.function.Function foo2 = (System.currentTimeMillis() < 0) ? (java.util.function.Function) r -> "" : r -> System.currentTimeMillis();
+ java.util.function.Function foo3 = (System.currentTimeMillis() < 0) ? (java.util.function.Function) r -> "" : r -> System.currentTimeMillis();
+ final java.util.function.Function<java.lang.String, java.lang.String> foo4 = (System.currentTimeMillis() < 0) ? (java.util.function.Function<String, String>) r -> "" : r -> String.valueOf(System.currentTimeMillis());
}
-// 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