v2 / vlib / v / checker / tests / for_in_invalid_identifier.vv
5 lines · 5 sloc · 94 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1fn main() {
2 for index, mut value in s.statements {
3 println('Hello ${index} ${value}')
4 }
5}
6