langtools/test/tools/javac/T6231847.java
author mikejwre
Wed, 09 Jun 2010 18:56:41 -0700
changeset 5634 895b66935810
parent 10 06bc494ca11e
child 6150 d055fa8ced62
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     6231847
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 * @summary Crash in com.sun.tools.javac.comp.Attr.visitNewClass:1352
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * @author  Peter von der Ah\u00e9
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * @compile/fail -XDdev T6231847.java
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 * @compile/fail/ref=T6231847.out -XDdev -XDrawDiagnostics -XDstdout T6231847.java
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
class T6231847 {
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
    interface T6231847I {}
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
    static class T6231847C {}
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
    T6231847 t;
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
    Object o = new <Object> T6231847I() {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
    Object p = new T6231847I(o) {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
    Object q = t.new T6231847I() {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
    Object r = t.new <Object> T6231847I(o) {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
    Object s = t.new T6231847C() {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
}