aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ValLambda.java
blob: 0b13b5a1a9ea7fc6a8a09ebea2e318fc25217b03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);
//	}
}