langtools/test/tools/javac/DuplicateClass.java
author jjg
Wed, 29 Oct 2014 17:25:23 -0700 (2014-10-30)
changeset 27319 030080f03e4f
parent 26528 a1a7ad15183e
permissions -rw-r--r--
8062348: langtools tests should close file manager (group 1) Reviewed-by: darcy
/*
 * @test /nodynamiccopyright/
 * @bug 4531500
 * @summary Cascade of problems from duplicate class can cause compiler crash.
 * @author gafter
 *
 * @compile/fail/ref=DuplicateClass.out -XDrawDiagnostics DuplicateClass.java
 */

/**
 * Compiling this translation unit should fail; there is, after all, a
 * duplicate class.  Nonetheless, the compiler should not crash while
 * processing it.
 */
public class DuplicateClass {
    protected Object clone() {
        super.clone();
    }
}

public class DuplicateClass {}