vxx2 / vlib / v / checker / tests / selective_const_import.out
6 lines · 6 sloc · 462 bytes · e3d328a92b0f592bb2c9d46ab5ae77a69ea03105
Raw
1vlib/v/checker/tests/selective_const_import.vv:1: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 time { second }
3 | ~~~~
4vlib/v/checker/tests/selective_const_import.vv:1:15: error: cannot selectively import constant `second` from `time`, import `time` and use `time.second` instead
5 1 | import time { second }
6 | ~~~~~~
7