[#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.

This commit is contained in:
Reinier Zwitserloot
2014-04-02 00:58:57 +02:00
parent 735ac6e8c2
commit e0c5f30012
5 changed files with 77 additions and 6 deletions
@@ -0,0 +1,5 @@
public class PostCompileSneaky {
public void test() {
throw lombok.Lombok.sneakyThrow(new Exception());
}
}