taliashijack.nim 80 B

123456789
  1. # issue #23977
  2. type Foo[T] = int
  3. proc foo(T: typedesc) =
  4. var a: T
  5. foo(int)