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

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

interface Default {
	default void method() {
		
	}
}