aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/SneakyThrowsPlain.java
blob: 871086b78778d8b597d0b971994de0a10e030ee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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");
	}
}