jdk-24/test/langtools/tools/javac/DuplicateClass.java

22 lines
523 B
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/*
* @test /nodynamiccopyright/
2007-12-01 00:00:00 +00:00
* @bug 4531500
* @summary Cascade of problems from duplicate class can cause compiler crash.
* @author gafter
*
* @compile/fail/ref=DuplicateClass.out -XDrawDiagnostics DuplicateClass.java
2007-12-01 00:00:00 +00:00
*/
/**
* 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() {
2007-12-01 00:00:00 +00:00
super.clone();
}
}
public class DuplicateClass {}