aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/v/checker/tests/unimplemented_interface_i.vv
blob: 4c50f0ec1b4b74936478cfa7d9590dba5c07117c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
interface Animal {
	name string
}

struct Cat {
	name int
}

fn main() {
	mut animals := []Animal{}
	animals << Cat{}
}