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