mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
9 lines
131 B
Nim
9 lines
131 B
Nim
type
|
|
Foo[T] = object
|
|
IntFoo = Foo[int]
|
|
|
|
proc bar(b: object|tuple) = discard
|
|
proc bar(b: IntFoo) = discard
|
|
|
|
var f: IntFoo
|
|
bar(f) |