blob: 6032f6f3c5e764a086ab8780ae35d904ea86ba72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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;
}
}
|