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