summary refs log tree commit diff stats
path: root/tests/generics/t1789.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/generics/t1789.nim')
-rw-r--r--tests/generics/t1789.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/generics/t1789.nim b/tests/generics/t1789.nim
index 188db88f6..c3fe336af 100644
--- a/tests/generics/t1789.nim
+++ b/tests/generics/t1789.nim
@@ -38,7 +38,7 @@ type
 proc `[]`*[N, T](f: Bar[N, T], n: range[0..(N - 1)]): T =
   assert high(n) == N-1
   result = f.bar[n]
-  
+
 var b: Bar[3, int]
 echo b[2]