test/langtools/tools/javac/DuplicateClass.java
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 26528 langtools/test/tools/javac/DuplicateClass.java@a1a7ad15183e
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse

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