blob: d2bceef8762d59f46dff5fc32e34304b4a073dcc [file] [log] [blame]
// for-of on an empty slow array does nothing.
var a = [];
a.slow = true;
for (var x of a)
fail();