mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 06:21:43 +00:00
16 lines
206 B
Java
16 lines
206 B
Java
// version 8:9
|
|
import lombok.val;
|
|
|
|
class ValSuperDefaultMethod implements Default {
|
|
public void test() {
|
|
val a = "";
|
|
Default.super.method();
|
|
}
|
|
|
|
}
|
|
|
|
interface Default {
|
|
default void method() {
|
|
|
|
}
|
|
} |