aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/ValLambda.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/before/ValLambda.java')
-rw-r--r--test/transform/resource/before/ValLambda.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/transform/resource/before/ValLambda.java b/test/transform/resource/before/ValLambda.java
index 5d40f220..64b9cbe8 100644
--- a/test/transform/resource/before/ValLambda.java
+++ b/test/transform/resource/before/ValLambda.java
@@ -1,5 +1,13 @@
// version 8:
class ValLambda {
+
+ static {
+ lombok.val foo = (System.currentTimeMillis() > 0) ? (Runnable)()-> {} : System.out::println;
+ }
+ {
+ lombok.val foo = (System.currentTimeMillis() > 0) ? (Runnable)()-> {} : System.out::println;
+ }
+
public void easyLambda() {
lombok.val foo = (Runnable)()-> {};
}