v2 / vlib / v / fmt / tests / interface_decl_with_comment_expected.vv
6 lines · 6 sloc · 78 bytes · 8b7f9089f610110a6c373d903974be3cb3650fe1
Raw
1interface Abc { // interface Abc
2 a int
3 // comment
4mut:
5 get_info() string
6}
7