Sign in
webkit
/
WebKit
/
36168652e4948b4e847a9c1caf1fabcf1810968f
/
.
/
JSTests
/
stress
/
regress-185995.js
blob: e7b14bea45daf76cb6ea5689b17d98e577fff8a9 [
file
] [
log
] [
blame
]
(
function
()
{
var
exception
;
try
{
var
list
=
{
'a'
:
5
};
for
(
const
{
x
=
x
}
in list
)
x
();
}
catch
(
e
)
{
exception
=
e
;
}
if
(
exception
!=
"ReferenceError: Cannot access uninitialized variable."
)
throw
"FAILED"
;
})();