blob: a10bb3821b75ff28da55d2879a372e308a168782 [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: 8.12.1-1_2
description: Properties - [[HasOwnProperty]] (old style own property)
---*/
var o = {
foo: 42
};
assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true');