swc/crates/swc_ecma_codegen/tests/test262/264266c68369c672.js
2022-03-22 07:54:08 +00:00

11 lines
109 B
JavaScript

function a() {
var b;
if (b = "b") {
return b;
} else {
return b;
}
}
;
a();