author | andrew |
Thu, 03 Jun 2010 19:37:48 +0100 | |
changeset 5639 | 730861c04a99 |
parent 10 | 06bc494ca11e |
child 6150 | d055fa8ced62 |
permissions | -rw-r--r-- |
10 | 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 |
} |