Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
unimplemented_interface_j.out
6
lines
·
6
sloc
·
267 bytes
·
4be45e8d02b09aef425df36904441fa224419a2e
Raw
1
vlib/v/checker/tests/unimplemented_interface_j.vv:12:13: error: `Cat` incorrectly implements interface `Animal`, field `name` must be mutable
2
10 | fn main() {
3
11 | mut animals := []Animal{}
4
12 | animals << Cat{}
5
| ~~~~~
6
13 | }