summary refs log tree commit diff stats
path: root/tests/closure/tcodegenerr1923.nim
blob: ee131ae159c2ef22d21681f5958aebebe7f57dbd (plain) (blame)
1
2
3
4
5
6
7
8
9
type
  Foo[M] = proc() : M

proc bar[M](f : Foo[M]) =
  discard f()

proc baz() : int = 42

bar(baz)