vxx2 / vlib / v / checker / tests / fn_call_with_extra_parenthesis.vv
6 lines · 5 sloc · 45 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1fn doit(i int) {
2}
3
4fn main() {
5 doit()(1)
6}
7