blob: b2476ce4d3b6d3d945b5678cad49887d594fde19 (
plain)
1
2
3
4
5
6
|
vlib/v/checker/tests/interface_implementing_interface.vv:15:10: error: cannot implement interface `Thing` with a different interface `Animal`
13 | dog := Dog{}
14 | animal := Animal(dog)
15 | thing := Thing(animal)
| ~~~~~~~~~~~~~
16 | println(thing)
|