| 1 | vlib/v/checker/tests/misspelled_mod_const_should_have_suggestion.vv:3:21: error: undefined ident: `time.secondz`. |
| 2 | Did you mean `time.second`? |
| 3 | 1 | import time |
| 4 | 2 | |
| 5 | 3 | time.sleep(1 * time.secondz) |
| 6 | | ~~~~~~~ |
| 7 | vlib/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 | | ~~~~~~~~~~~~~~~~ |
| 12 | vlib/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 | |