summary refs log tree commit diff stats
path: root/tests/closure/tstmtlist.nim
blob: 6a1390617a61ad65262ba641915b9479a308e448 (plain) (blame)
1
2
3
4
5
6
7
8
9
discard """
  action: compile
"""

proc foo(x: proc()) = x()
foo: echo "a" #[tt.Warning
     ^ statement list expression assumed to be anonymous proc; this is deprecated, use `do (): ...` or `proc () = ...` instead [StmtListLambda]]#
foo do: echo "b" #[tt.Warning
        ^ statement list expression assumed to be anonymous proc; this is deprecated, use `do (): ...` or `proc () = ...` instead [StmtListLambda]]#