vxx2 / vlib / v / checker / tests / misspelled_mod_const_should_have_suggestion.out
16 lines · 16 sloc · 726 bytes · 21e6c46ae83f1cbe05a74f49afa969c37f8c89b2
Raw
1vlib/v/checker/tests/misspelled_mod_const_should_have_suggestion.vv:3:21: error: undefined ident: `time.secondz`.
2Did you mean `time.second`?
3 1 | import time
4 2 |
5 3 | time.sleep(1 * time.secondz)
6 | ~~~~~~~
7vlib/v/checker/tests/misspelled_mod_const_should_have_suggestion.vv:3:12: error: mismatched types `int literal` and `void`
8 1 | import time
9 2 |
10 3 | time.sleep(1 * time.secondz)
11 | ~~~~~~~~~~~~~~~~
12vlib/v/checker/tests/misspelled_mod_const_should_have_suggestion.vv:3:12: error: `1 * time.secondz` (no value) used as value in argument 1 to `time.sleep`
13 1 | import time
14 2 |
15 3 | time.sleep(1 * time.secondz)
16 | ~~~~~~~~~~~~~~~~
17