| 1 | vlib/v/checker/tests/for_in_invalid_identifier.vv:2:26: error: undefined ident: `s` |
| 2 | 1 | fn main() { |
| 3 | 2 | for index, mut value in s.statements { |
| 4 | | ^ |
| 5 | 3 | println('Hello ${index} ${value}') |
| 6 | 4 | } |
| 7 | vlib/v/checker/tests/for_in_invalid_identifier.vv:2:28: error: `s` does not return a value |
| 8 | 1 | fn main() { |
| 9 | 2 | for index, mut value in s.statements { |
| 10 | | ~~~~~~~~~~ |
| 11 | 3 | println('Hello ${index} ${value}') |
| 12 | 4 | } |
| 13 | vlib/v/checker/tests/for_in_invalid_identifier.vv:3:29: error: no known default format for type `void` |
| 14 | 1 | fn main() { |
| 15 | 2 | for index, mut value in s.statements { |
| 16 | 3 | println('Hello ${index} ${value}') |
| 17 | | ~~~~~ |
| 18 | 4 | } |
| 19 | 5 | } |
| 20 | |