summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/coverage/multisource/foo.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/coverage/multisource/foo.ts')
-rw-r--r--cli/tests/testdata/coverage/multisource/foo.ts14
1 files changed, 0 insertions, 14 deletions
diff --git a/cli/tests/testdata/coverage/multisource/foo.ts b/cli/tests/testdata/coverage/multisource/foo.ts
deleted file mode 100644
index 0559cadd8..000000000
--- a/cli/tests/testdata/coverage/multisource/foo.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-export function foo(cond: boolean) {
- let a = 0;
- if (cond) {
- a = 1;
- } else {
- a = 2;
- }
-
- if (a == 4) {
- return 1;
- } else {
- return 2;
- }
-}