langtools/test/tools/javac/T7090499.java
author jlahoda
Thu, 09 Oct 2014 10:08:52 +0200
changeset 26993 513b2cae81c3
parent 20250 26472e76d2f5
permissions -rw-r--r--
8057652: Request to improve error messages for labeled declarations Summary: Parse labeled statements as block statements to improve error recovery for labeled declarations; related cleanup. Reviewed-by: jjg

/*
 * @test /nodynamiccopyright/
 * @bug 7090499
 * @summary missing rawtypes warnings in anonymous inner class
 * @compile/ref=T7090499.out -Xlint:rawtypes -XDrawDiagnostics T7090499.java
 */

class T7090499<X> {
    {
        new Object() {
            T7090499 x;
        };
    }
}