@@ -58,7 +58,7 @@ proc f(a1: string; a2: varargs[string]; a3: float; a4: var string)
58
58
required type for a4: var string
59
59
but expression '"bad"' is immutable, not 'var'
60
60
61
- expression: f("asdf", "1", "2", "3", "4", 2.3 , "bad")
61
+ expression: f("asdf", "1", "2", "3", "4", 2.25 , "bad")
62
62
tsigmatch.nim(164, 4) Error: type mismatch: got <string, a0: int literal(12)>
63
63
but expected one of:
64
64
proc f(x: string; a0: var int)
@@ -153,7 +153,7 @@ block:
153
153
# sigmatch gets confused with param/arg position after varargs
154
154
proc f (a1: int ) = discard
155
155
proc f (a1: string , a2: varargs [string ], a3: float , a4: var string ) = discard
156
- f (" asdf" , " 1" , " 2" , " 3" , " 4" , 2.3 , " bad" )
156
+ f (" asdf" , " 1" , " 2" , " 3" , " 4" , 2.25 , " bad" )
157
157
158
158
block :
159
159
# bug: https://github.com/nim-lang/Nim/issues/11061#issuecomment-508970046
@@ -169,4 +169,3 @@ block:
169
169
proc fun1 (a1: MyInt , a2: Mystring ) = discard
170
170
proc fun1 (a1: float , a2: Mystring ) = discard
171
171
fun1 (Mystring .default, " asdf" )
172
-
0 commit comments