From e0c5f3001276b94fd14e7e81e38f72070bda0c4d Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Wed, 2 Apr 2014 00:58:57 +0200 Subject: [#655] Added a test for the post compiler. It indeed fails in JDK8 now due to an ASM version that doesn't understand java 8 class files. --- test/bytecode/resource/PostCompileSneaky.java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test/bytecode/resource/PostCompileSneaky.java (limited to 'test/bytecode/resource') diff --git a/test/bytecode/resource/PostCompileSneaky.java b/test/bytecode/resource/PostCompileSneaky.java new file mode 100644 index 00000000..fded565c --- /dev/null +++ b/test/bytecode/resource/PostCompileSneaky.java @@ -0,0 +1,5 @@ +public class PostCompileSneaky { + public void test() { + throw lombok.Lombok.sneakyThrow(new Exception()); + } +} \ No newline at end of file -- cgit