summary refs log tree commit diff stats
path: root/tests/generics/m3770.nim
blob: 7f5714a2b1f7eb472486f2a40e5c062d3944a284 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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)