summary refs log tree commit diff stats
path: root/tests/casestmt/tlinearscanend.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/casestmt/tlinearscanend.nim')
-rw-r--r--tests/casestmt/tlinearscanend.nim8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/casestmt/tlinearscanend.nim b/tests/casestmt/tlinearscanend.nim
index 15fd0c70a..9a984e039 100644
--- a/tests/casestmt/tlinearscanend.nim
+++ b/tests/casestmt/tlinearscanend.nim
@@ -4,13 +4,13 @@ import strutils
 var x = 343
 
 case stdin.readline.parseInt
-of 0: 
+of 0:
   echo "most common case"
-of 1: 
+of 1:
   {.linearScanEnd.}
   echo "second most common case"
 of 2: echo "unlikely: use branch table"
-else: 
+else:
   echo "unlikely too: use branch table"
 
 
@@ -18,7 +18,7 @@ case x
 of 23: echo "23"
 of 343: echo "343"
 of 21: echo "21"
-else: 
+else:
   {.linearScanEnd.}
   echo "default"