Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
unimplemented_interface_h.out
6
lines
·
6
sloc
·
247 bytes
·
4be45e8d02b09aef425df36904441fa224419a2e
Raw
1
vlib/v/checker/tests/unimplemented_interface_h.vv:9:13: error: `Cat` doesn't implement field `name` of interface `Animal`
2
7 | fn main() {
3
8 | mut animals := []Animal{}
4
9 | animals << Cat{}
5
| ~~~~~
6
10 | }