summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/coverage/multisource/baz/quux.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/coverage/multisource/baz/quux.ts')
-rw-r--r--cli/tests/testdata/coverage/multisource/baz/quux.ts14
1 files changed, 0 insertions, 14 deletions
diff --git a/cli/tests/testdata/coverage/multisource/baz/quux.ts b/cli/tests/testdata/coverage/multisource/baz/quux.ts
deleted file mode 100644
index 6032f6f3c..000000000
--- a/cli/tests/testdata/coverage/multisource/baz/quux.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-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;
- }
-}