made some tests green

This commit is contained in:
Araq
2013-05-16 08:54:58 +02:00
parent 886a1ab15d
commit 064df34ae4
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
discard """
errormsg: 'type mismatch'
errormsg: "type mismatch"
line: 7
"""

View File

@@ -1,6 +1,6 @@
discard """
file: "system.nim"
line: 695
line: 696
errormsg: "type mismatch"
"""

View File

@@ -10,7 +10,7 @@ template Additive(typ: typeDesc): stmt =
proc `+` *(x: typ): typ {.borrow.}
proc `-` *(x: typ): typ {.borrow.}
template Multiplicative(typ, base: typeDesc): stmt =
template Multiplicative(typ, base: typeDesc): stmt {.immediate.} =
proc `*` *(x: typ, y: base): typ {.borrow.}
proc `*` *(x: base, y: typ): typ {.borrow.}
proc `div` *(x: typ, y: base): typ {.borrow.}