summaryrefslogtreecommitdiff
path: root/cli/tests/018_async_catch.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/018_async_catch.ts')
-rw-r--r--cli/tests/018_async_catch.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/018_async_catch.ts b/cli/tests/018_async_catch.ts
index 0d034d798..a16f11696 100644
--- a/cli/tests/018_async_catch.ts
+++ b/cli/tests/018_async_catch.ts
@@ -1,4 +1,4 @@
-async function fn(): Promise<never> {
+function fn(): Promise<never> {
throw new Error("message");
}
async function call(): Promise<void> {