mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
18 lines
188 B
Nim
18 lines
188 B
Nim
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) )
|
|
|