This commit is contained in:
Araq
2016-01-18 14:54:35 +01:00
parent 7211462a04
commit 7ee1847137
2 changed files with 14 additions and 1 deletions

View File

@@ -1635,6 +1635,7 @@ proc matchesAux(c: PContext, n, nOrig: PNode,
if arg != nil and m.baseTypeMatch and container != nil:
addSon(container, arg)
incrIndexType(container.typ)
checkConstraint(n.sons[a])
else:
m.state = csNoMatch
return
@@ -1675,7 +1676,7 @@ proc matchesAux(c: PContext, n, nOrig: PNode,
setSon(m.call, formal.position + 1, arg)
inc(f)
container = nil
checkConstraint(n.sons[a])
checkConstraint(n.sons[a])
inc(a)
proc semFinishOperands*(c: PContext, n: PNode) =

12
tests/js/tvarargs.nim Normal file
View File

@@ -0,0 +1,12 @@
# bug #3584
type
ConsoleObj {.importc.} = object of RootObj
log*: proc() {.nimcall varargs.}
Console = ref ConsoleObj
var console* {.importc nodecl.}: Console
when isMainModule:
console.log "Hello, world"