summary refs log tree commit diff stats
path: root/tests/effects/tsidee1.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/effects/tsidee1.nim')
-rw-r--r--tests/effects/tsidee1.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/effects/tsidee1.nim b/tests/effects/tsidee1.nim
index bd5b32dd7..e486d32e7 100644
--- a/tests/effects/tsidee1.nim
+++ b/tests/effects/tsidee1.nim
@@ -11,8 +11,8 @@ proc dontcare(x: int): int = return x + global
 
 proc SideEffectLyer(x, y: int): int {.noSideEffect.} = #ERROR_MSG 'SideEffectLyer' can have side effects
   return x + y + dontcare(x)
-  
-echo SideEffectLyer(1, 3) 
+
+echo SideEffectLyer(1, 3)