Files
Nim/tests/generics/mdotlookup.nim
2020-03-25 19:15:34 +01:00

17 lines
284 B
Nim

proc baz(o: any): int = 5 # if bar is exported, it works
type MyObj = object
x: int
proc foo*(b: any) =
var o: MyObj
echo b.baz, " ", o.x.baz, " ", b.baz()
import sets
var intset = initHashSet[int]()
proc fn*[T](a: T) =
if a in intset: echo("true")
else: echo("false")