diff options
Diffstat (limited to 'cli/tests/error_001.ts')
-rw-r--r-- | cli/tests/error_001.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/error_001.ts b/cli/tests/error_001.ts index f06f80cb4..b01068bc0 100644 --- a/cli/tests/error_001.ts +++ b/cli/tests/error_001.ts @@ -2,7 +2,7 @@ function foo(): never { throw Error("bad"); } -function bar(): void { +function bar() { foo(); } |