summary refs log tree commit diff stats
path: root/tests/stdlib/tquit.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stdlib/tquit.nim')
-rw-r--r--tests/stdlib/tquit.nim18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/stdlib/tquit.nim b/tests/stdlib/tquit.nim
deleted file mode 100644
index 12385e57b..000000000
--- a/tests/stdlib/tquit.nim
+++ /dev/null
@@ -1,18 +0,0 @@
-discard """
-disabled: true
-output: '''
-just exiting...
-'''
-joinable: false
-"""
-
-# Test `addQuitProc` (now deprecated by `addExitProc`)
-
-import std/syncio
-
-proc myExit() {.noconv.} =
-  write(stdout, "just exiting...\n")
-
-{.push warning[deprecated]: off.}
-addQuitProc(myExit)
-{.pop.}