mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
fixes #516
This commit is contained in:
@@ -207,11 +207,14 @@ proc SearchForBorrowProc(c: PContext, startScope: PScope, fn: PSym): PSym =
|
||||
# New approach: generate fn(x, y, z) where x, y, z have the proper types
|
||||
# and use the overloading resolution mechanism:
|
||||
var call = newNode(nkCall)
|
||||
var hasDistinct = false
|
||||
call.add(newIdentNode(fn.name, fn.info))
|
||||
for i in 1.. <fn.typ.n.len:
|
||||
let param = fn.typ.n.sons[i]
|
||||
let t = skipTypes(param.typ, abstractVar-{tyTypeDesc})
|
||||
if t.kind == tyDistinct or param.typ.kind == tyDistinct: hasDistinct = true
|
||||
call.add(newNodeIT(nkEmpty, fn.info, t.baseOfDistinct))
|
||||
var resolved = semOverloadedCall(c, call, call, {fn.kind})
|
||||
if resolved != nil:
|
||||
result = resolved.sons[0].sym
|
||||
if hasDistinct:
|
||||
var resolved = semOverloadedCall(c, call, call, {fn.kind})
|
||||
if resolved != nil:
|
||||
result = resolved.sons[0].sym
|
||||
|
||||
17
tests/reject/tinvalidborrow.nim
Normal file
17
tests/reject/tinvalidborrow.nim
Normal file
@@ -0,0 +1,17 @@
|
||||
discard """
|
||||
line: 11
|
||||
errormsg: "no symbol to borrow from found"
|
||||
"""
|
||||
|
||||
# bug #516
|
||||
|
||||
type
|
||||
TAtom = culong
|
||||
|
||||
proc `==`*(a, b: TAtom): bool {.borrow.}
|
||||
|
||||
var
|
||||
d, e: TAtom
|
||||
|
||||
echo( $(d == e) )
|
||||
|
||||
Reference in New Issue
Block a user