blob: 6c0f45aa51bff3f7254aff5bbd1f4a541912ecb0 [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 bar() {
foo();
}
function foo() {
for (v8; 10; 0) {
}
}
try{
bar()
}catch(ex){
}
try{
bar()
}catch(ex){
}
WScript.Echo("Passed");