diff options
Diffstat (limited to 'cli/tests/testdata')
-rw-r--r-- | cli/tests/testdata/useUnknownInCatchVariables.ts | 5 | ||||
-rw-r--r-- | cli/tests/testdata/useUnknownInCatchVariables.ts.out | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/cli/tests/testdata/useUnknownInCatchVariables.ts b/cli/tests/testdata/useUnknownInCatchVariables.ts deleted file mode 100644 index abab554a4..000000000 --- a/cli/tests/testdata/useUnknownInCatchVariables.ts +++ /dev/null @@ -1,5 +0,0 @@ -try { - throw new Error(); -} catch (e) { - console.log(e.message); -} diff --git a/cli/tests/testdata/useUnknownInCatchVariables.ts.out b/cli/tests/testdata/useUnknownInCatchVariables.ts.out deleted file mode 100644 index 3c29d3229..000000000 --- a/cli/tests/testdata/useUnknownInCatchVariables.ts.out +++ /dev/null @@ -1,5 +0,0 @@ -[WILDCARD] -error: TS2571 [ERROR]: Object is of type 'unknown'. - console.log(e.message); - ^ - at file://[WILDCARD]/useUnknownInCatchVariables.ts:4:15 |