blob: 3dc71fe150cf3c922dbac46239194fad372ea549 [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
var b1 = Boolean(true);
b1.__defineSetter__("something", function() {});
var b2 = Boolean(true);
b2.__defineGetter__("something else", function() {});
// Above shouldn't cause AV
WScript.Echo('Pass');