swc/crates/swc_ecma_codegen/tests/test262/5317b960ad78bbfe.js
2021-11-10 19:00:54 +09:00

11 lines
155 B
JavaScript

function a(b, c) {
// circular reference
function d() {
return e();
}
function e() {
return d();
}
return b + c;
}