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

interface Default {
	default void method() {
	}
}