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