summary refs log tree commit diff stats
path: root/tests/objvariant/tcheckedfield1.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/objvariant/tcheckedfield1.nim')
-rw-r--r--tests/objvariant/tcheckedfield1.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/objvariant/tcheckedfield1.nim b/tests/objvariant/tcheckedfield1.nim
index 1963ceb8d..56d784a2b 100644
--- a/tests/objvariant/tcheckedfield1.nim
+++ b/tests/objvariant/tcheckedfield1.nim
@@ -15,7 +15,7 @@ type
     case k: TNodeKind
     of nkBinary, nkTernary: a, b: PNode
     of nkStr: s: string
-    
+
   PList = ref object
     data: string
     next: PList
@@ -52,7 +52,7 @@ proc toString3(x: PNode): string =
 
 proc p() =
   var x: PNode = PNode(k: nkStr, s: "abc")
-  
+
   let y = x
   if not y.isNil:
     echo toString(y), " ", toString2(y)