v2 / vlib / v / fmt / tests / interface_method_with_pre_comments_keep.vv
16 lines · 14 sloc · 231 bytes · 112a1278bb2295bd5862882d4360c6f06fa06aa8
Raw
1module main
2
3fn main() {
4}
5
6pub interface IOperateResult {
7mut:
8 // is_success
9 is_success bool
10 // is_show_msg
11 is_show_msg bool
12 // msg
13 msg string
14 // comment before method def
15 set_msg(msg string) // comment after method def
16}
17