vxx2 / vlib / v / checker / tests / module_selector_decl_assign_err.vv
6 lines · 5 sloc · 66 bytes · f7e99809e0fb2cef2124c27ee45a028d87d2af09
Raw
1import os
2
3fn main() {
4 os.args := []string{}
5 println(os.args)
6}
7