diff options
Diffstat (limited to 'test/transform/resource/before/SneakyThrowsPlain.java')
-rw-r--r-- | test/transform/resource/before/SneakyThrowsPlain.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/transform/resource/before/SneakyThrowsPlain.java b/test/transform/resource/before/SneakyThrowsPlain.java new file mode 100644 index 00000000..97fecf8f --- /dev/null +++ b/test/transform/resource/before/SneakyThrowsPlain.java @@ -0,0 +1,10 @@ +import lombok.SneakyThrows; +class SneakyThrowsPlain { + @lombok.SneakyThrows public void test() { + System.out.println("test1"); + } + + @SneakyThrows public void test2() { + System.out.println("test2"); + } +}
\ No newline at end of file |