Files
openide/plugins/lombok/testData/before/SneakyThrowsPlain.java
Michail Plushnikov cf4761381e start migration to gradle build
GitOrigin-RevId: 41a0a1b8f93d66f45fedc080a0c088567fcca89d
2016-01-24 01:35:36 +03:00

20 lines
404 B
Java

import lombok.SneakyThrows;
class SneakyThrowsPlain {
@lombok.SneakyThrows SneakyThrowsPlain() {
super();
System.out.println("constructor");
}
@lombok.SneakyThrows SneakyThrowsPlain(int x) {
this();
System.out.println("constructor2");
}
@lombok.SneakyThrows public void test() {
System.out.println("test1");
}
@SneakyThrows public void test2() {
System.out.println("test2");
}
}