TypeAnnotationsCrashWithErroneousTreeTest.java revision 3530:581330357a3b
1/*
2 * @test /nodynamiccopyright/
3 * @bug 8026963
4 * @summary type annotations code crashes for lambdas with void argument
5 * @compile/fail/ref=TypeAnnotationsCrashWithErroneousTreeTest.out -XDrawDiagnostics -Xshouldstop:at=FLOW TypeAnnotationsCrashWithErroneousTreeTest.java
6 */
7
8public class TypeAnnotationsCrashWithErroneousTreeTest {
9    private void t(this) {}
10}
11