v/vlib/v/checker/tests/duplicate_field_method_err.vv

11 lines
82 B
V

struct St{
attr fn()
}
fn (s St) attr() {}
interface Foo {
bar fn ()
bar()
}