Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v4
/
vlib
/
v
/
checker
/
tests
/
import_middle_err.out
7
lines
·
7
sloc
·
246 bytes
·
86dfd3902fa851455e98b176a0abf5ff9dc6ab28
Raw
1
vlib/v/checker/tests/import_middle_err.vv:5:1: error: `import x` can only be declared at the beginning of the file
2
3 | println('hello, world')
3
4 | }
4
5 | import os
5
| ~~~~~~
6
6 | fn main() {
7
7 | println(time.now())
8