mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-20 07:51:32 +00:00
fixes #516
This commit is contained in:
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