blob: fc9aeb874b8b19a3c1e594b8bca7f971db12dc25 [file] [log] [blame]
//@ runDefault
var x = [2.5, 1.5];
Array.prototype.unshift.call(x, 3.5);
if (x.toString() != "3.5,2.5,1.5")
throw "Error: bad result: " + describe(x);