mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
7 lines
171 B
Plaintext
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 | }
|