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