aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/ValSuperDefaultMethod.java
blob: 1ccb3c2ff4685f953d50151729361b1255f63f2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// version 8:9
import lombok.val;

class ValSuperDefaultMethod implements Default {
	public void test() {
		val a = "";
		Default.super.method();
	}
	
}

interface Default {
	default void method() {
		
	}
}