Sign in
webkit
/
WebKit
/
10627ba484528fed3e7358b1801250bb004c8a99
/
.
/
JSTests
/
es6
/
arrow_functions_lexical_new.target_binding.js
blob: 3a5c96f8bc9697925957203de39449ab07aca972 [
file
] [
log
] [
blame
]
function
test
()
{
function
C
()
{
return
x
=>
new
.
target
;
}
return
new
C
()()
===
C
&&
C
()()
===
undefined
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);