summary refs log blame commit diff stats
path: root/tests/compile/tcolonisproc.nim
blob: e55587dfcb3294c84fd50fe070e8695cd15b70a7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                               
proc p(a, b: int, c: proc ()) =
  c()

 
p(1, 3): 
  echo 1
  echo 3
    
p(1, 1, proc() =
  echo 1
  echo 2)