langtools/test/tools/javac/T6379327.java
author sogoel
Wed, 01 Oct 2014 14:15:40 -0700
changeset 26901 2c11dc81a5c8
parent 5520 86e4b9a9da40
permissions -rw-r--r--
8055783: Group 9e: golden files for tests in tools/javac dir Reviewed-by: jjg, mcimadamore

/*
 * @test    /nodynamiccopyright/
 * @bug     6379327
 * @summary Erroneous catch block not detected with anonymous class declaration
 * @author  Peter Jones, Wei Tao
 * @compile/fail/ref=T6379327.out -XDrawDiagnostics T6379327.java
 */

import java.security.*;
public class T6379327 {
    public static void main(String[] args) {
        final String name = args[0];
        try {
            new PrivilegedExceptionAction() {
                public Object run() throws ClassNotFoundException {
                    return Class.forName(name);
                }
            };
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }
    }
}