diff options
Diffstat (limited to 'test/transform/resource/before/NonNullWithSneakyThrows.java')
-rw-r--r-- | test/transform/resource/before/NonNullWithSneakyThrows.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/transform/resource/before/NonNullWithSneakyThrows.java b/test/transform/resource/before/NonNullWithSneakyThrows.java new file mode 100644 index 00000000..35f78a7f --- /dev/null +++ b/test/transform/resource/before/NonNullWithSneakyThrows.java @@ -0,0 +1,5 @@ +class NonNullWithSneakyThrows { + @lombok.SneakyThrows void test(@lombok.NonNull String in) { + System.out.println(in); + } +} |