v4 / vlib / v / checker / tests / no_interface_str.out
6 lines · 6 sloc · 243 bytes · 86dfd3902fa851455e98b176a0abf5ff9dc6ab28
Raw
1vlib/v/checker/tests/no_interface_str.vv:18:12: error: interface `Animal` does not have a .str() method. Use typeof() instead
2 16 | fn moin() {
3 17 | a := get_animal()
4 18 | println(a.str())
5 | ~~~~~
6 19 | }
7