mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
7 lines
209 B
Plaintext
7 lines
209 B
Plaintext
vlib/v/checker/tests/import_duplicate_err.v:2:8: error: module name `time` duplicate
|
|
1 | import time
|
|
2 | import time
|
|
| ~~~~
|
|
3 | fn main() {
|
|
4 | println(time.now().unix_time())
|