summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/ch10/10.3/10.3.1.js
blob: 699949e18fa95bb18f32d7b4806f469eb9ec409f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2012 Google Inc.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @description Tests that Intl.Collator.prototype.constructor is the
 * Intl.Collator.
 */

if (Intl.Collator.prototype.constructor !== Intl.Collator) {
    $ERROR("Intl.Collator.prototype.constructor is not the same as " +
           "Intl.Collator");
}