mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-21 06:45:27 +00:00
Fix thardforward
This commit is contained in:
committed by
Andreas Rumpf
parent
f0999de9dc
commit
268b918150
@@ -2,8 +2,8 @@ type
|
||||
Bar[T] = Foo[T, T]
|
||||
Baz[T] = proc (x: Foo[T, T])
|
||||
|
||||
GenericAlias[T] = Foo[T]
|
||||
GenericAlias2[T] = Foo[Baz[T]]
|
||||
GenericAlias[T] = Foo[T, T]
|
||||
GenericAlias2[T] = Foo[Baz[T], T]
|
||||
|
||||
Concrete1 = Foo[int, float]
|
||||
Concrete2 = proc(x: proc(a: Foo[int, float]))
|
||||
|
||||
Reference in New Issue
Block a user