Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
if_smartcast_mut_var_interface_err.out
7
lines
·
7
sloc
·
318 bytes
·
a988ef34749c2f8822c7301eb69d77336f6c511d
Raw
1
vlib/v/checker/tests/if_smartcast_mut_var_interface_err.vv:13:5: error: smart casting a mutable interface value requires `if mut foo_mut is ...`
2
11 | fn main() {
3
12 | mut foo_mut := Foo(Bar{})
4
13 | if foo_mut is Bar {
5
| ~~~~~~~
6
14 | println(json.encode(foo_mut))
7
15 | }
8