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