langtools/test/tools/javac/T4093617/T4093617.java
author michaelm
Wed, 17 Nov 2010 14:32:29 +0000
changeset 7272 4ff2cc07e8c2
parent 6150 d055fa8ced62
child 36526 3b41f1c69604
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
     2
 * @test  /nodynamiccopyright/
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * @bug     4093617
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 * @summary Object has no superclass
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * @author  Peter von der Ah\u00e9
6150
d055fa8ced62 6971882: Remove -XDstdout from javac test
jjg
parents: 2984
diff changeset
     6
 * @compile/fail/ref=T4093617.out -XDrawDiagnostics T4093617.java
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
package java.lang;
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
class Object {
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
    Object() { super(); }
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
}