Sign in
webkit
/
WebKit
/
37d54a666eb4285b1330948ce76065443f92601c
/
.
/
JSTests
/
es6
/
RegExp_syntax_extensions_octal_escape_sequences.js
blob: 9a69a7ed0d9eb1483d2a496dfa2cd51cc18c22fd [
file
] [
log
] [
blame
]
function
test
()
{
return
/\041/
.
exec
(
"!"
)[
0
]
===
"!"
&&
/[\041]/
.
exec
(
"!"
)[
0
]
===
"!"
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);