From 4d2ebbb87703bdca1e20f4d94d92b07d97b5c07e Mon Sep 17 00:00:00 2001 From: Jacek Sieka Date: Fri, 30 Jun 2023 14:54:46 +0200 Subject: [PATCH] fix controlflow test (#22194) the function actually returns --- tests/arc/tcontrolflow.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/arc/tcontrolflow.nim b/tests/arc/tcontrolflow.nim index 80cc2b187e..dbc1159034 100644 --- a/tests/arc/tcontrolflow.nim +++ b/tests/arc/tcontrolflow.nim @@ -76,7 +76,7 @@ var c = Control(x: 7) run(c) -proc sysFatal(exceptn: typedesc, message: string) {.inline, noreturn.} = +proc sysFatal(exceptn: typedesc, message: string) {.inline.} = var buf = newStringOfCap(200) add(buf, "##") add(buf, message)