Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
RegExp_syntax_extensions_invalid_control-character_escapes.js
blob: 932ae72f1ec7524cf66ceba59e698066232a8ff6 [
file
] [
log
] [
blame
]
function
test
()
{
return
/\c2/
.
exec
(
"\\c2"
)[
0
]
===
"\\c2"
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);