mirror of
https://github.com/tiennm99/lombok.git
synced 2026-06-01 20:13:03 +00:00
add some dockerfiles for testing against jdk9
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
@lombok.Data
|
||||
public class HelloWorld {
|
||||
private final int answer;
|
||||
|
||||
public static void main(String... args) {
|
||||
System.out.println(new HelloWorld(42).getAnswer());
|
||||
}
|
||||
|
||||
@FunctionalInterface
|
||||
interface Foo {
|
||||
String name();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user