aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ValSuperDefaultMethod.java
blob: 8cb9b25e7f3d322f1035dbdd8b396c5c8daf37bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// version 8:9
class ValSuperDefaultMethod implements Default {
	public void test() {
		final java.lang.String a = "";
		Default.super.method();
	}
}

interface Default {
	default void method() {
	}
}