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_method.out
2020-08-25 18:14:06 +03:00

7 lines
171 B
Plaintext

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