Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
import_unused_warning.out
6
lines
·
6
sloc
·
281 bytes
·
e3d328a92b0f592bb2c9d46ab5ae77a69ea03105
Raw
1
vlib/v/checker/tests/import_unused_warning.vv:2:8: warning: module 'time' is imported but never used. Use `import time as _`, to silence this warning, or just remove the unused import line
2
1 | import os as _
3
2 | import time
4
| ~~~~
5
3 |
6
4 | fn main() {
7