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')
-rw-r--r--tests/run/tbug499771.nim14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/run/tbug499771.nim b/tests/run/tbug499771.nim
deleted file mode 100644
index 682148422..000000000
--- a/tests/run/tbug499771.nim
+++ /dev/null
@@ -1,14 +0,0 @@
-discard """
-  file: "tbug499771.nim"
-  output: '''TSubRange: 5 from 1 to 10
-true true true'''
-"""
-type 
-  TSubRange = range[1 .. 10]
-  TEnum = enum A, B, C
-var sr: TSubRange = 5
-echo("TSubRange: " & $sr & " from " & $low(TSubRange) & " to " & 
-     $high(TSubRange))
-
-const cset = {A} + {B}
-echo A in cset, " ", B in cset, " ", C notin cset