vxx2 / vlib / v / checker / tests / inner_functions_call_before_define.vv
9 lines · 8 sloc · 102 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1fn main() {
2 _ := f()
3 go f()
4
5 f := fn () string {
6 return 'hello'
7 }
8 _ := f() // avoid warnings
9}
10