summary refs log tree commit diff stats
path: root/tests/compile/tnoforward.nim
blob: 0359ff3487f91323db845e98550c2d48ec383be7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{. noforward: on .}

proc foo(x: int) =
  bar x

proc bar(x: int) =
  echo x

foo(10)