Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
cast_string_to_ptr_err.out
5
lines
·
5
sloc
·
205 bytes
·
be0dc0e537660fb30cff244bdf6a10b6d8fbf6d4
Raw
1
vlib/v/checker/tests/cast_string_to_ptr_err.vv:2:7: error: cannot cast string to `&char`, use `'foo'.str` instead.
2
1 | fn main() {
3
2 | _ := &char('foo')
4
| ~~~~~~~~~~~~
5
3 | }
6