blob: 5c8cfce006655cde5af253329f08310b1feb0248 [file] [log] [blame]
// Clearing a Set doesn't affect expando properties.
var s = new Set();
s.x = 3;
s.clear();
assertEq(s.x, 3);