v2 / vlib / v / checker / tests / duplicate_field_method_err.vv
10 lines · 8 sloc · 101 bytes · 428fd7f57f29b4c163d046a8c3c849acfa9f4f6f
Raw
1struct St {
2 attr fn () = unsafe { nil }
3}
4
5fn (s St) attr() {}
6
7interface Foo {
8 bar fn ()
9 bar()
10}
11