aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ValInLambda.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-delombok/ValInLambda.java')
-rw-r--r--test/transform/resource/after-delombok/ValInLambda.java13
1 files changed, 11 insertions, 2 deletions
diff --git a/test/transform/resource/after-delombok/ValInLambda.java b/test/transform/resource/after-delombok/ValInLambda.java
index 7ce1e1b4..861fb9da 100644
--- a/test/transform/resource/after-delombok/ValInLambda.java
+++ b/test/transform/resource/after-delombok/ValInLambda.java
@@ -2,17 +2,26 @@
class ValInLambda {
Runnable foo = (Runnable) () -> {
final int i = 1;
+ final java.lang.Runnable foo = (System.currentTimeMillis() > 0) ? (Runnable) () -> {
+ } : System.out::println;
};
-
+
public void easyLambda() {
Runnable foo = (Runnable) () -> {
final int i = 1;
};
}
-
+
public void easyIntersectionLambda() {
Runnable foo = (Runnable) () -> {
final int i = 1;
};
}
+
+ public void easyLubLambda() {
+ Runnable foo = (Runnable) () -> {
+ final java.lang.Runnable fooInner = (System.currentTimeMillis() > 0) ? (Runnable) () -> {
+ } : System.out::println;
+ };
+ }
}