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_interface_method.vv
2022-01-02 09:18:24 +02:00

6 lines
78 B
V

// duplicate interface methods in declaration
interface Abc {
fun()
fun()
}