diff options
Diffstat (limited to 'tests/vm/ttouintconv.nim')
-rw-r--r-- | tests/vm/ttouintconv.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/vm/ttouintconv.nim b/tests/vm/ttouintconv.nim index dd4c597ba..403de8f41 100644 --- a/tests/vm/ttouintconv.nim +++ b/tests/vm/ttouintconv.nim @@ -20,7 +20,7 @@ nimout: ''' #bug #2514 -macro foo(): typed = +macro foo() = var x = 8'u8 var y = 9'u16 var z = 17'u32 @@ -58,7 +58,7 @@ macro foo(): typed = var zz = 0x7FFFFFFF'u32 echo zz -macro foo2(): typed = +macro foo2() = var xx = 0x7FFFFFFFFFFFFFFF echo xx |