blob: 303078ba80602466a5ad489c8c90ce0a4baa7c54 [file] [log] [blame]
// 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');
}