diff options
author | Jacek Sieka <arnetheduck@gmail.com> | 2023-06-30 14:54:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-30 14:54:46 +0200 |
commit | 4d2ebbb87703bdca1e20f4d94d92b07d97b5c07e (patch) | |
tree | ea56c0ac5656003ba430c0087d5a610f294defba | |
parent | 3a1adf7d66261c081b5fad9993cc4866728d3a6d (diff) | |
download | Nim-4d2ebbb87703bdca1e20f4d94d92b07d97b5c07e.tar.gz |
fix controlflow test (#22194)
the function actually returns
-rw-r--r-- | tests/arc/tcontrolflow.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/arc/tcontrolflow.nim b/tests/arc/tcontrolflow.nim index 80cc2b187..dbc115903 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) |