From 8fb4f79757547378c7d8c29759d04037bdd47c7e Mon Sep 17 00:00:00 2001 From: Philipp Eichhorn Date: Sun, 24 Jun 2012 20:38:00 +0200 Subject: [Issue 381] @SneakyThrows respects constructor calls --- test/transform/resource/after-ecj/SneakyThrowsPlain.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'test/transform/resource/after-ecj/SneakyThrowsPlain.java') diff --git a/test/transform/resource/after-ecj/SneakyThrowsPlain.java b/test/transform/resource/after-ecj/SneakyThrowsPlain.java index 6e75a75c..56016b5a 100644 --- a/test/transform/resource/after-ecj/SneakyThrowsPlain.java +++ b/test/transform/resource/after-ecj/SneakyThrowsPlain.java @@ -1,7 +1,14 @@ import lombok.SneakyThrows; class SneakyThrowsPlain { - SneakyThrowsPlain() { + @lombok.SneakyThrows SneakyThrowsPlain() { super(); + try + { + System.out.println("constructor"); + } + catch (final java.lang.Throwable $ex) { + throw lombok.Lombok.sneakyThrow($ex); + } } public @lombok.SneakyThrows void test() { try -- cgit