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