fix #6637 array index type depends generic (#20673)

(cherry picked from commit aa6f9d490f)
This commit is contained in:
Bung
2022-10-27 18:22:04 +08:00
committed by narimiran
parent 26e52d7c5d
commit cf12d6fcde
2 changed files with 10 additions and 1 deletions

9
tests/generics/t6637.nim Normal file
View File

@@ -0,0 +1,9 @@
type
Grid2D*[I: SomeInteger, w, h: static[I], T] = object
grid: array[w, array[h, T]]
Grid2DIns = Grid2D[int, 2, 3, uint8]
let a = Grid2DIns()
doAssert a.grid.len == 2
doAssert a.grid[0].len == 3