Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
array_init_with_void_value_err.out
7
lines
·
7
sloc
·
208 bytes
·
e2e5cf8db56f3562c7baa735061690be936bdf3e
Raw
1
vlib/v/checker/tests/array_init_with_void_value_err.vv:4:8: error: invalid void array element type
2
2 |
3
3 | fn main() {
4
4 | a := [yo()]
5
| ~~~~
6
5 | println(a)
7
6 | }
8