Files
Nim/tests/generics/m3770.nim
ringabout 16f42084d3 fixes #20900; Calling template through from generic function across module fails to build (#21649)
* fixes #20900; Calling template through from generic function across module fails to build

* sanother way
2023-04-13 12:11:06 +02:00

12 lines
158 B
Nim

type
Noice* = object
hidden: int
template jjj*: Noice =
Noice(hidden: 15)
type Opt* = object
o: int
template none*(O: type Opt): Opt = Opt(o: 0)