v2 / vlib / v / parser / tests / map_init_void2.vv
7 lines · 6 sloc · 92 bytes · 79b4b0e6c87c3caf9871322e9a9bedd5c2bba701
Raw
1fn f(m map[string]) {
2 println('illegal function')
3}
4
5fn main() {
6 println('Hello world')
7}
8