mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-06 16:38:36 +00:00
14 lines
260 B
Java
14 lines
260 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4093617
|
|
* @summary Object has no superclass
|
|
* @author Peter von der Ah\u00e9
|
|
* @compile/fail/ref=T4093617.out -XDrawDiagnostics T4093617.java
|
|
*/
|
|
|
|
package java.lang;
|
|
|
|
class Object {
|
|
Object() { super(); }
|
|
}
|