1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-01 16:51:13 -05:00
denoland-deno/tests/testdata/coverage/multisource/baz/quux.ts

15 lines
216 B
TypeScript
Raw Normal View History

export function quux(cond: boolean) {
if (cond) {
const a = 1;
const b = a;
const c = b;
const d = c;
const e = d;
const f = e;
const g = f;
return g;
} else {
return 2;
}
}