langtools/test/tools/javac/unicode/SupplementaryJavaID2.java
author sogoel
Mon, 07 Jul 2014 13:39:31 -0700
changeset 25439 26d6d07eebc7
parent 5520 86e4b9a9da40
permissions -rw-r--r--
8044080: .out files for unicode, implicitThis and importChecks tests in tools/javac dir Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
25439
26d6d07eebc7 8044080: .out files for unicode, implicitThis and importChecks tests in tools/javac dir
sogoel
parents: 5520
diff changeset
     2
 * @test /nodynamiccopyright/
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * @bug 4914724
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 * @summary Ensure that the invalid surrogate sequence, as the start of an identifier,
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 *          causes a compilation failure
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * @author Naoto Sato
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 *
25439
26d6d07eebc7 8044080: .out files for unicode, implicitThis and importChecks tests in tools/javac dir
sogoel
parents: 5520
diff changeset
     8
 * @compile/fail/ref=SupplementaryJavaID2.out -XDrawDiagnostics  SupplementaryJavaID2.java
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
public class SupplementaryJavaID2 {
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
    int \ud801\ud801abc;
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
}