summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arrow-functions/prototype-2.js
blob: 6573783a927681fe324e250deecaa7bad0f17d1e (plain)
1
2
3
4
// Arrow functions do not have a .prototype property.

assertEq("prototype" in (a => a), false);
assertEq("prototype" in (() => {}), false);