1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/cast_to_any_type_err.out

7 lines
182 B
Plaintext

vlib/v/parser/tests/cast_to_any_type_err.vv:2:7: error: cannot use `any` type here
1 | fn main() {
2 | a := any(22)
| ~~~
3 | println(a)
4 | }