summary refs log tree commit diff stats
path: root/tests/template/mcan_access_hidden_field.nim
blob: bf3592701c5a54da818be87c8a48266fa9179493 (plain) (blame)
1
2
3
4
5
6
7
8
9
type
  Foo* = object
    fooa, foob: int

proc createFoo*(a, b: int): Foo = Foo(fooa: a, foob: b)

template geta*(f: Foo): expr = f.fooa