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