langtools/test/tools/javac/DuplicateClass.java
author sogoel
Fri, 05 Sep 2014 16:43:00 -0700
changeset 26528 a1a7ad15183e
parent 5520 86e4b9a9da40
permissions -rw-r--r--
8055075: Group 9b: golden files for tests in tools/javac dir Reviewed-by: jjg

/*
 * @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 {}