Sign in
code
/
edge
/
openjdk
/
refs/heads/master
/
.
/
langtools
/
test
/
tools
/
javac
/
literals
/
T6891079.java
blob: 8d5edbcf71af4425052baea26ab96b3b0c50de61 [
file
] [
log
] [
blame
] [
edit
]
/* @test /nodynamiccopyright/
* @bug 6891079
* @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
;
}