blob: de519ef06da70dfd621d95c07fd4d5a4de1ca6ac [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.2-1
description: Error.prototype.name is not enumerable.
---*/
for (var i in Error.prototype) {
assert.notSameValue(i, "name", 'i');
}