Sign in
webkit
/
WebKit
/
74a70b4650fbd719ba3c83ed49ad2fe62a266972
/
.
/
JSTests
/
es6
/
Promise_constructor_requires_new.js
blob: 33468e94a0bc29665335b5fcadf5feb271120119 [
file
] [
log
] [
blame
]
function
test
()
{
new
Promise
(
function
(){});
try
{
Promise
(
function
(){});
return
false
;
}
catch
(
e
)
{
return
true
;
}
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);