summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/self-hosting/define-value-property.js
blob: b5ffebde21a10ee397f18c79d5b0da3cf357aa39 (plain)
1
2
3
4
5
6
7
8
// These tests just mustn't trigger asserts.
if (!this.hasOwnProperty('Intl'))
    quit();

Object.prototype.get = 5;
new Intl.Collator().resolvedOptions();

Intl.DateTimeFormat.supportedLocalesOf('en');