Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
for_in_index_option.out
7
lines
·
7
sloc
·
235 bytes
·
e2e5cf8db56f3562c7baa735061690be936bdf3e
Raw
1
vlib/v/checker/tests/for_in_index_option.vv:4:17: error: for in: cannot index `![]string`
2
2 |
3
3 | fn main() {
4
4 | for file in os.ls('.') {
5
| ~~~~~~~
6
5 | println(file)
7
6 | }
8