mirror of
https://github.com/nim-lang/Nim.git
synced 2026-05-05 05:24:49 +00:00
bugfix: don't treat generic types with different static params as the same type
This commit is contained in:
@@ -34,3 +34,20 @@ type
|
||||
yes s.items is Iter[TNumber]
|
||||
no s.items is Iter[float]
|
||||
|
||||
type
|
||||
Foo[N: static[int], T] = object
|
||||
field: array[1..N, T]
|
||||
|
||||
Bar[T] = Foo[4, T]
|
||||
Baz[N: static[int]] = Foo[N, float]
|
||||
|
||||
no Foo[2, float] is Foo[3, float]
|
||||
no Foo[2, float] is Foo[2, int]
|
||||
|
||||
yes Foo[4, string] is Foo[4, string]
|
||||
yes Bar[int] is Foo[4, int]
|
||||
yes Foo[4, int] is Bar[int]
|
||||
|
||||
no Foo[4, int] is Baz[4]
|
||||
yes Foo[4, float] is Baz[4]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user