blob: 1a20f736a7d6d413da3ed34bec20f5cf78d3e3d0 [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.
//-------------------------------------------------------------------------------------------------------
(function(){
var func0 = function(){
d = { valueOf: function() { WScript.Echo('d valueOf'); return 3; } };
}
var func1 = function(p0){
p0 = (p0 >>>= (~ func0(1)));
}
var d = 1;
func1(d);
func1(d);
})();