Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
octal_and_binary_literals_octal_literals.js
blob: 6d6514b4cc09d18b9e65c04c6c61744ed84d8d46 [
file
] [
log
] [
blame
]
function
test
()
{
return
0o10
===
8
&&
0O10
===
8
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);