1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/module_multiple_names_err.out

5 lines
227 B
Plaintext

vlib/v/parser/tests/module_multiple_names_err.vv:1:13: error: `module main`, you can only declare one module, unexpected `os`
1 | module main os
| ~~
2 | fn main() {
3 | println('hello, world')