summary refs log tree commit diff stats
path: root/tests/objects/tobjpragma.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/objects/tobjpragma.nim')
-rw-r--r--tests/objects/tobjpragma.nim10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/objects/tobjpragma.nim b/tests/objects/tobjpragma.nim
index dda8057b6..0a6cc893b 100644
--- a/tests/objects/tobjpragma.nim
+++ b/tests/objects/tobjpragma.nim
@@ -12,7 +12,7 @@ discard """
 
 # Disabled since some versions of GCC ignore the 'packed' attribute
 
-# Test 
+# Test
 
 type
   Foo {.packed.} = object
@@ -21,12 +21,12 @@ type
 
   Bar {.packed.} = object
     a: int8
-    b: int16   
-    
+    b: int16
+
   Daz {.packed.} = object
     a: int32
-    b: int8 
-    c: int32  
+    b: int8
+    c: int32
 
 
 var f = Foo(a: 1, b: 1)