summary refs log tree commit diff stats
path: root/tests/vm/t9043.nim
blob: 1ae2e383cb040c717c086caaf796ec1cc31268fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
  nimout: "(Field0: 2, Field1: 2, Field2: 2, Field3: 2)"
"""

proc foo[N: static[int]](dims: array[N, int])=
  const N1 = N
  const N2 = dims.len
  static: echo (N, dims.len, N1, N2)

foo([1, 2])