blob: 0579b434bea29f17d693fb78cc44e0ad715c5468 [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.
//-------------------------------------------------------------------------------------------------------
//
// Test case that caught bug 19988
//
function test(x){
switch(x){
case "a":
WScript.Echo("a");
break;
case "b":
WScript.Echo("b");
break;
case "a":
break;
case "b":
WScript.Echo("bb");
break;
}
}
test("a");
test("b");