aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/ValLambda.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-ecj/ValLambda.java')
-rw-r--r--test/transform/resource/after-ecj/ValLambda.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/transform/resource/after-ecj/ValLambda.java b/test/transform/resource/after-ecj/ValLambda.java
index 4bf3265b..e7cbb28e 100644
--- a/test/transform/resource/after-ecj/ValLambda.java
+++ b/test/transform/resource/after-ecj/ValLambda.java
@@ -7,13 +7,16 @@ class ValLambda {
};
}
public void easyIntersectionLambda() {
- final @lombok.val java.lang.Object foo = (Runnable & java.io.Serializable) () -> {
+ final @lombok.val java.lang.Runnable foo = (Runnable & java.io.Serializable) () -> {
};
- final @lombok.val java.lang.Object bar = (java.io.Serializable & Runnable) () -> {
+ final @lombok.val java.io.Serializable bar = (java.io.Serializable & Runnable) () -> {
};
}
public void easyLubLambda() {
final @lombok.val java.lang.Runnable foo = ((System.currentTimeMillis() > 0) ? (Runnable) () -> {
-} : (Runnable) System.out::println);
+} : System.out::println);
+ final @lombok.val java.util.function.Function foo2 = ((System.currentTimeMillis() < 0) ? (java.util.function.Function) (<no type> r) -> "" : (<no type> r) -> System.currentTimeMillis());
+ java.util.function.Function foo3 = ((System.currentTimeMillis() < 0) ? (java.util.function.Function) (<no type> r) -> "" : (<no type> r) -> System.currentTimeMillis());
+ final @lombok.val java.util.function.Function<java.lang.String, java.lang.String> foo4 = ((System.currentTimeMillis() < 0) ? (java.util.function.Function<String, String>) (<no type> r) -> "" : (<no type> r) -> String.valueOf(System.currentTimeMillis()));
}
} \ No newline at end of file