1 2 3 4 5 6 7 8 9 10
function f() { return /x/; } function g() { return (f() == f()); } for (var i = 0; i < 2; ++i) { assertEq(g(), false); }