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