blob: a4d7a44c877b3c5162a19adaa5be92a307a3e971 [file]
//-------------------------------------------------------------------------------------------------------
// 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");