vxx2 / vlib / v / checker / tests / module_not_at_same_line_err.out
6 lines · 6 sloc · 202 bytes · 86dfd3902fa851455e98b176a0abf5ff9dc6ab28
Raw
1vlib/v/checker/tests/module_not_at_same_line_err.vv:2:1: error: `module` and `main` must be at same line
2 1 | module
3 2 | main
4 | ~~~~
5 3 | fn main() {
6 4 | println('hello, world')
7