test/tools/javac/quid/T6999438.java

Tue, 01 Nov 2011 15:49:45 -0700

author
jjh
date
Tue, 01 Nov 2011 15:49:45 -0700
changeset 1124
9e2eb4bc49eb
parent 1042
defdd98cb7ce
child 2525
2eb010b6cb22
permissions
-rw-r--r--

7101933: langtools jtreg tests do not work with jprt on windows
Summary: Fixed langtools/test/Makefile to work on cygwin. Updated jtreg to 4.1 and JCK to JCK8.
Reviewed-by: jjg, ohair

jjg@752 1 /* @test /nodynamiccopyright/
jjg@752 2 * @bug 6999438
jjg@752 3 * @summary remove support for exotic identifiers from JDK 7
darcy@1042 4 * @compile/fail/ref=T6999438.out -XDrawDiagnostics T6999438.java
jjg@752 5 */
jjg@752 6
jjg@752 7 class Test {
jjg@752 8 int #"not supported";
jjg@752 9 }

mercurial