summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/coverage/multisource/foo.ts
blob: 023f8255611d4bc6e01d4c6816ca3377252105e8 (plain)
1
2
3
4
5
6
7
export function foo(cond: boolean) {
  if (cond) {
    return 1;
  } else {
    return 2;
  }
}