Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
parser
/
tests
/
interface_duplicate_interface_method.out
6
lines
·
6
sloc
·
181 bytes
·
a50f2ca5e8e8512e74c2932384b1933d46a02be3
Raw
1
vlib/v/parser/tests/interface_duplicate_interface_method.vv:4:2: error: duplicate method `fun`
2
2 | interface Abc {
3
3 | fun()
4
4 | fun()
5
| ~~~
6
5 | }
7