blob: 88446a7d23e1203a5e7b1b16935d4532c1c87faa [file] [log] [blame]
function f(x) {
switch(x) {
case 0:
case 100:
}
}
f("");
evaluate('f({})', { noScriptRval : true });
function g(x) {
switch(x) {
case 0.1:
case 100:
}
}
g(false);
evaluate('g({})', { noScriptRval : true });