DEBSOURCES
Skip Quicknav
sources / nim / 2.2.0-1 / tests / generics / t21742.nim
12345678910
type Foo[T] = object x:T Bar[T,R] = Foo[T] Baz = Bar[int,float] proc qux[T,R](x: Bar[T,R]) = discard var b:Baz b.qux()