blob: 73aad264906a9ae5deb96e71d8283f470008b55f [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 foo() {
var a = new Int8Array(500);
for(var i = 500; i < 1000; ++i) {
a[i] = 0;
}
}
foo();
foo();
WScript.Echo("PASSED");