summary refs log tree commit diff stats
path: root/tests/effects/teffects5.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/effects/teffects5.nim')
-rw-r--r--tests/effects/teffects5.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/effects/teffects5.nim b/tests/effects/teffects5.nim
index d630a6fc4..779b4662c 100644
--- a/tests/effects/teffects5.nim
+++ b/tests/effects/teffects5.nim
@@ -6,7 +6,7 @@ discard """
 proc p(q: proc() ): proc() {.tags: [], raises: [], closure.} =
   return proc () =
     q()
-  
+
 let yay = p(proc () = raise newException(EIO, "IO"))
 
 proc main() {.raises: [], tags: [].} = yay()