mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
13 lines
260 B
Java
13 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(); }
|
|
}
|