summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arrow-functions/prototype-1.js
blob: 57922420f105da8f6b051ab65312706c4a17f6fc (plain)
1
2
3
4
// The prototype of an arrow function is Function.prototype.

assertEq(Object.getPrototypeOf(a => a), Function.prototype);
assertEq(Object.getPrototypeOf(() => {}), Function.prototype);