summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug686179.js
blob: 9eb69e584001bcc34e4cc51ff338c76864833eea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Binary: cache/js-dbg-64-b31b25125429-linux
// Flags: -m -n -a
//

(function () {
  assertEquals = function assertEquals(expected, found, name_opt) {  };
  assertTrue = function assertTrue(value, name_opt) {  };
})();
function f0() {}
function f1(x) {}
function test(f) {
  assertTrue(null === (assertEquals).arguments);
}
test(f0);
test(f1);