Sign in
webkit
/
WebKit
/
98517451c44951a553bf7eb2f40afcaffd7bcdca
/
.
/
JSTests
/
es6
/
octal_and_binary_literals_binary_literals.js
blob: d3a3d43fa2a0845e98062f4bd2ffc8cdfb3c2fb6 [
file
] [
log
] [
blame
]
function
test
()
{
return
0b10
===
2
&&
0B10
===
2
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);