summary refs log tree commit diff stats
path: root/tests/range/tbug499771.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/range/tbug499771.nim')
-rw-r--r--tests/range/tbug499771.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/range/tbug499771.nim b/tests/range/tbug499771.nim
index 682148422..1504a2ad7 100644
--- a/tests/range/tbug499771.nim
+++ b/tests/range/tbug499771.nim
@@ -3,11 +3,11 @@ discard """
   output: '''TSubRange: 5 from 1 to 10
 true true true'''
 """
-type 
+type
   TSubRange = range[1 .. 10]
   TEnum = enum A, B, C
 var sr: TSubRange = 5
-echo("TSubRange: " & $sr & " from " & $low(TSubRange) & " to " & 
+echo("TSubRange: " & $sr & " from " & $low(TSubRange) & " to " &
      $high(TSubRange))
 
 const cset = {A} + {B}