mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 12:22:31 +00:00
16 lines
243 B
Java
16 lines
243 B
Java
//eclipse: verify diet
|
|
import lombok.SneakyThrows;
|
|
|
|
public class SneakyThrowsInInitializer {
|
|
|
|
public static final Runnable R = new Runnable() {
|
|
|
|
@Override
|
|
@SneakyThrows
|
|
public void run() {
|
|
System.out.println("test");
|
|
|
|
}
|
|
};
|
|
}
|