aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/ValSuperDefaultMethod.java
blob: cb0ec47c60c7051ddbc7058c0134463b1a7634ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import lombok.val;
class ValSuperDefaultMethod implements Default {
  ValSuperDefaultMethod() {
    super();
  }
  public void test() {
    final @val java.lang.String a = "";
    Default.super.method();
  }
}
interface Default {
  default void method() {
  }
}