1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/interface_duplicate_method.out

6 lines
225 B
Plaintext

vlib/v/parser/tests/interface_duplicate_method.vv:5:12: error: duplicate method `foo`
3 | // duplicate normal method definitions on interface
4 | fn (a Abc) foo() {}
5 | fn (a Abc) foo() {}
| ~~~