t14193.nim 163 B

1234567
  1. type
  2. Task*[N: int] = object # XXX this shouldn't work, should be `static int`
  3. env*: array[N, byte]
  4. var task14193: Task[20]
  5. doAssert task14193.env.len == 20