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