blob: b11629f5d8c4e890190ff642189a074ba8caf075 [file] [log] [blame]
// This test should not crash.
function foo(a) {
return 0 in a;
}
for (let i = 0; i < 100000; i++) {
const str = new String('asdf');
str[42] = 'x'; // Give it ArrayStorage
foo(str);
}