diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-03-29 12:19:49 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-03-29 12:19:49 +0200 |
commit | 0378f9980f64303a87be4e5423272c65c1976a73 (patch) | |
tree | f59afa976dc001d6288621cc2e98d37e4d6e3530 /tests/ccgbugs | |
parent | 8c8825b9ce1ec04a812142d85ec1369c4c0d2ca7 (diff) | |
download | Nim-0378f9980f64303a87be4e5423272c65c1976a73.tar.gz |
fixed regressions
Diffstat (limited to 'tests/ccgbugs')
-rw-r--r-- | tests/ccgbugs/tstringslice.nim | 3 |
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 |