langtools/test/tools/javac/T6231847.java
author hseigel
Wed, 02 Mar 2016 23:48:41 +0000
changeset 36397 c487ced7231c
parent 28335 0b37a4232e35
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
28335
0b37a4232e35 8058373: Group 10a: golden files for tests in tools/javac dir
sogoel
parents: 6150
diff changeset
     2
 * @test    /nodynamiccopyright/
10
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
6150
d055fa8ced62 6971882: Remove -XDstdout from javac test
jjg
parents: 10
diff changeset
     6
 * @compile/fail/ref=T6231847.out -XDdev -XDrawDiagnostics T6231847.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
class T6231847 {
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
    interface T6231847I {}
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
    static class T6231847C {}
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
    T6231847 t;
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
    Object o = new <Object> T6231847I() {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
    Object p = new T6231847I(o) {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
    Object q = t.new T6231847I() {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
    Object r = t.new <Object> T6231847I(o) {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
    Object s = t.new T6231847C() {};
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
}