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.nim13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/stdlib/tquit.nim b/tests/stdlib/tquit.nim
deleted file mode 100644
index 1f9283ec4..000000000
--- a/tests/stdlib/tquit.nim
+++ /dev/null
@@ -1,13 +0,0 @@
-discard """
-output: '''
-just exiting...
-'''
-joinable: false
-"""
-
-# Test the new beforeQuit variable:
-
-proc myExit() {.noconv.} =
-  write(stdout, "just exiting...\n")
-
-addQuitProc(myExit)