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

7 lines
181 B
Plaintext

vlib/v/parser/tests/interface_duplicate_interface_method.vv:4:2: error: duplicate method `fun`
2 | interface Abc {
3 | fun()
4 | fun()
| ~~~
5 | }