mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-14 15:23:27 +00:00
committed by
Andreas Rumpf
parent
ed6160ad6d
commit
a55817f9ac
@@ -2092,14 +2092,21 @@ proc paramTypesMatchAux(m: var TCandidate, f, a: PType,
|
||||
result = localConvMatch(c, m, f, a, arg)
|
||||
else:
|
||||
r = typeRel(m, base(f), a)
|
||||
if r >= isGeneric:
|
||||
case r
|
||||
of isGeneric:
|
||||
inc(m.convMatches)
|
||||
result = copyTree(arg)
|
||||
if r == isGeneric:
|
||||
result.typ = getInstantiatedType(c, arg, m, base(f))
|
||||
result.typ = getInstantiatedType(c, arg, m, base(f))
|
||||
m.baseTypeMatch = true
|
||||
# bug #4799, varargs accepting subtype relation object
|
||||
elif r == isSubtype:
|
||||
of isFromIntLit:
|
||||
inc(m.intConvMatches, 256)
|
||||
result = implicitConv(nkHiddenStdConv, f[0], arg, m, c)
|
||||
m.baseTypeMatch = true
|
||||
of isEqual:
|
||||
inc(m.convMatches)
|
||||
result = copyTree(arg)
|
||||
m.baseTypeMatch = true
|
||||
of isSubtype: # bug #4799, varargs accepting subtype relation object
|
||||
inc(m.subtypeMatches)
|
||||
if base(f).kind == tyTypeDesc:
|
||||
result = arg
|
||||
|
||||
@@ -2,6 +2,7 @@ discard """
|
||||
output: '''(1, 1)
|
||||
(2, 2)
|
||||
(3, 3)
|
||||
@[1, 2, 3, 4]
|
||||
'''
|
||||
"""
|
||||
|
||||
@@ -15,3 +16,12 @@ proc foo(args: varargs[int]) =
|
||||
discard
|
||||
|
||||
foo(1,2,3)
|
||||
|
||||
# 10999
|
||||
|
||||
proc varargsToSeq(vals: varargs[int32]): seq[int32] =
|
||||
result = newSeqOfCap[int32](vals.len)
|
||||
for v in vals:
|
||||
result.add v
|
||||
|
||||
echo varargsToSeq(1, 2, 3, 4)
|
||||
|
||||
Reference in New Issue
Block a user