vxx2 / vlib / v / checker / tests / import_not_found_err.vv
5 lines · 4 sloc · 55 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1import notexist
2
3fn main() {
4 println(notexist.name)
5}
6