blob: 056479f9ac60c942576a4a92ea47a60941ceb9bc [file] [log] [blame]
//@ runBytecodeCache
function f() {
let x = {};
x.foo = "foo";
}
function g() {
switch ('foo') {
case "foo":
break;
case "bar":
case "baz":
default:
throw new Error('Should have jumped to `foo`');
break;
}
}
g();
f();