summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arrow-functions/typeof.js
blob: a610deb91caa682fd77eb5098ddf8d0f90cb7c95 (plain)
1
2
3
4
// The typeof an arrow function is "function".

assertEq(typeof (() => 1), "function");
assertEq(typeof (a => { return a + 1; }), "function");