Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
import_syntax_err.out
5
lines
·
5
sloc
·
193 bytes
·
86dfd3902fa851455e98b176a0abf5ff9dc6ab28
Raw
1
vlib/v/checker/tests/import_syntax_err.vv:1:12: error: cannot import multiple modules at a time
2
1 | import time, os
3
| ^
4
2 | fn main() {
5
3 | println(time.now())
6