langtools/test/tools/javac/enum/6384542/T6384542.java
author jjg
Mon, 29 Nov 2010 14:15:36 -0800
changeset 7335 8b390fd27190
parent 6150 d055fa8ced62
permissions -rw-r--r--
6900037: javac should warn if earlier -source is used and bootclasspath not set Reviewed-by: darcy
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     6384542
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 * @summary crash: test/tools/javac/versions/check.sh
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * @author  Peter von der Ah\u00e9
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6150
diff changeset
     6
 * @compile/fail -source 1.4 -Xlint:-options T6384542.java
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 6150
diff changeset
     7
 * @compile/fail/ref=T6384542.out -source 1.4 -Xlint:-options -XDrawDiagnostics T6384542.java
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
import static java.lang.Math.sin;
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
public enum A { }
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
class B {
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
    int i = 0xCafe.BabeP1;
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
    List<X> l;
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
    public static void main(String... args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
        for (String arg : args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
            System.out.println(arg);
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    21
    @Override
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
    public String toString() { return null; }
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
}
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
public klass C { }