summary refs log tree commit diff stats
path: root/tests/run/tbug499771.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/tbug499771.nim')
-rwxr-xr-xtests/run/tbug499771.nim12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/run/tbug499771.nim b/tests/run/tbug499771.nim
deleted file mode 100755
index 633ab39f6..000000000
--- a/tests/run/tbug499771.nim
+++ /dev/null
@@ -1,12 +0,0 @@
-discard """
-  file: "tbug499771.nim"
-  output: "TSubRange: 5 from 1 to 10"
-"""
-type TSubRange = range[1 .. 10]
-var sr: TSubRange = 5
-echo("TSubRange: " & $sr & " from " & $low(TSubRange) & " to " & 
-     $high(TSubRange))
-
-
-
-