blob: 31fa78eadb7efa4ecd8ee8bfb5f50e4aef85d0b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// There's no assertEq() here; the test is just that it doesn't crash.
(function () {
new function () {}
}());
[function () {}]
gc()
for (z = 0; z < 6; ++z) {
x = []
}
for (w in [0]) {
x._ = w
}
gc()
|