Last change
on this file was 2, checked in by dmik, 15 years ago |
Imported OpenJDK 6 b19 sources from Oracle.
|
File size:
310 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * @test /nodynamiccopyright/
|
---|
3 | * @bug 6183529
|
---|
4 | * @summary javac gives warnings instead of errors on non-ASCII digits
|
---|
5 | * @compile/fail/ref=Digits.out -XDstdout -XDrawDiagnostics Digits.java
|
---|
6 | */
|
---|
7 |
|
---|
8 | class Digits
|
---|
9 | {
|
---|
10 | public static final double good = 1.23;
|
---|
11 | public static final double bad = 1.2\u0663;
|
---|
12 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.