Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
unimplemented_interface_j.vv
13
lines
·
11
sloc
·
128 bytes
·
4be45e8d02b09aef425df36904441fa224419a2e
Raw
1
interface Animal {
2
mut:
3
name string
4
}
5
6
struct Cat {
7
name string
8
}
9
10
fn main() {
11
mut animals := []Animal{}
12
animals << Cat{}
13
}
14