summary refs log tree commit diff stats
path: root/tests/ccgbugs
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-03-29 12:19:49 +0200
committerAndreas Rumpf <rumpf_a@web.de>2016-03-29 12:19:49 +0200
commit0378f9980f64303a87be4e5423272c65c1976a73 (patch)
treef59afa976dc001d6288621cc2e98d37e4d6e3530 /tests/ccgbugs
parent8c8825b9ce1ec04a812142d85ec1369c4c0d2ca7 (diff)
downloadNim-0378f9980f64303a87be4e5423272c65c1976a73.tar.gz
fixed regressions
Diffstat (limited to 'tests/ccgbugs')
-rw-r--r--tests/ccgbugs/tstringslice.nim3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/ccgbugs/tstringslice.nim b/tests/ccgbugs/tstringslice.nim
index 00c1adf74..f6f64bebc 100644
--- a/tests/ccgbugs/tstringslice.nim
+++ b/tests/ccgbugs/tstringslice.nim
@@ -9,7 +9,6 @@ discard """
 34
 34
 4
-4
 4'''
 """
 
@@ -21,4 +20,4 @@ const str = "123456789"
 for i in TRange.low .. TRange.high:
   echo str[i]                          #This works fine
   echo str[int(i) .. int(TRange.high)] #So does this
-  echo str[i .. TRange.high]           #The compiler complains about this
+  #echo str[i .. TRange.high]           #The compiler complains about this