2009-10-13 15:26:30 -07:00
|
|
|
/* @test /nodynamiccopyright/
|
2016-01-11 11:21:10 +01:00
|
|
|
* @bug 6891079 8056897
|
2009-10-13 15:26:30 -07:00
|
|
|
* @summary Compiler allows invalid binary literals 0b and oBL
|
|
|
|
* @compile/fail/ref=T6891079.out -XDrawDiagnostics T6891079.java
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Test {
|
|
|
|
int bi = 0B;
|
|
|
|
long bl = 0BL;
|
|
|
|
int xi = 0X;
|
|
|
|
long xl = 0XL;
|
|
|
|
}
|