v2 / vlib / v / checker / tests / anon_fn_without_body.out
7 lines · 7 sloc · 223 bytes · e2e5cf8db56f3562c7baa735061690be936bdf3e
Raw
1vlib/v/checker/tests/anon_fn_without_body.vv:4:10: error: anonymous function must declare a body
2 2 |
3 3 | fn main() {
4 4 | func := fn () int
5 | ~~~~~~~~~
6 5 |
7 6 | println(func())
8