diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/core/macros.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim index fe911ffbf..bd1de9cd7 100644 --- a/lib/core/macros.nim +++ b/lib/core/macros.nim @@ -347,8 +347,7 @@ proc getTypeImpl*(n: NimNode): NimNode {.magic: "NGetType", noSideEffect.} = newLit(x.getTypeImpl.repr) let t = """ object - arr: array[0 .. 3, float32] -""" + arr: array[0 .. 3, float32]""" doAssert(dumpTypeImpl(a) == t) doAssert(dumpTypeImpl(b) == t) doAssert(dumpTypeImpl(c) == t) |