blob: 56c624b922f1260d99d007ef7cbd1a1d8e3c9c88 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function test0(){
var s = "aabbcc";
var r = new RegExp(/b/);
r.lastIndex = 15;
s.split(r);
WScript.Echo(r.lastIndex !== 15 ? "Pass" : ("Fail actual value: " + r.lastIndex));
}
test0();
test0();