mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-11 22:08:54 +00:00
9
tests/overload/t7416.nim
Normal file
9
tests/overload/t7416.nim
Normal file
@@ -0,0 +1,9 @@
|
||||
type
|
||||
Foo[T] = object
|
||||
IntFoo = Foo[int]
|
||||
|
||||
proc bar(b: object|tuple) = discard
|
||||
proc bar(b: IntFoo) = discard
|
||||
|
||||
var f: IntFoo
|
||||
bar(f)
|
||||
Reference in New Issue
Block a user