tgenericobjconstr.nim 228 B

12345678910111213141516
  1. discard """
  2. matrix: "--skipParentCfg"
  3. """
  4. # issue #24631
  5. type
  6. V[d: static bool] = object
  7. l: int
  8. template y(): V[false] = V[false](l: 0)
  9. discard y()
  10. template z(): V[false] = cast[V[false]](V[false](l: 0))
  11. discard z()