Sign in
webkit
/
WebKit
/
2ab9dfaee5c791e0d7b2c0893a55ced8677e2e2a
/
.
/
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"
);