summary refs log tree commit diff stats
path: root/tests/manyloc/standalone
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2021-01-04 19:44:50 +0100
committerGitHub <noreply@github.com>2021-01-04 19:44:50 +0100
commit6317e4004dded87d698b41274e31d318fe52e877 (patch)
treea21e58f061793aa1b4efff4d8e5031b4f4e93c12 /tests/manyloc/standalone
parent80c8f06663658e12fcdcd2d36a0ee38683de552a (diff)
downloadNim-6317e4004dded87d698b41274e31d318fe52e877.tar.gz
make --gc:arc --exceptions:quirky work again [backport:1.4] (#16583)
* make --gc:arc --exceptions:quirky work again [backport:1.4]

* fixes #16404 [backport:1.4]
Diffstat (limited to 'tests/manyloc/standalone')
-rw-r--r--tests/manyloc/standalone/panicoverride.nim5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/manyloc/standalone/panicoverride.nim b/tests/manyloc/standalone/panicoverride.nim
index d9b3f4388..c0b8bb030 100644
--- a/tests/manyloc/standalone/panicoverride.nim
+++ b/tests/manyloc/standalone/panicoverride.nim
@@ -11,9 +11,4 @@ proc panic(s: string) {.noreturn.} =
   rawoutput(s)
   exit(1)
 
-# Alternatively we also could implement these 2 here:
-#
-# proc sysFatal(exceptn: typeDesc, message: string) {.noReturn.}
-# proc sysFatal(exceptn: typeDesc, message, arg: string) {.noReturn.}
-
 {.pop.}