summary refs log tree commit diff stats
path: root/tests/misc/tnewuns.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/misc/tnewuns.nim')
-rw-r--r--tests/misc/tnewuns.nim12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/misc/tnewuns.nim b/tests/misc/tnewuns.nim
deleted file mode 100644
index d6bae4fb1..000000000
--- a/tests/misc/tnewuns.nim
+++ /dev/null
@@ -1,12 +0,0 @@
-# test the new unsigned operations:
-
-import
-  strutils
-
-var
-  x, y: int
-
-x = 1
-y = high(int)
-
-writeLine(stdout, $ ( x +% y ) )