summaryrefslogtreecommitdiff
path: root/test/built-ins/Error/prototype/message/15.11.4.3-1.js
blob: 6860135a9fcc651674964c62dcb2707468825b2e (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.11.4.3-1
description: Error.prototype.message is not enumerable.
---*/

        for (var i in Error.prototype) {
            assert.notSameValue(i, "message", 'i');
        }