v2 / vlib / v / fmt / tests / struct_decl_with_comments_keep.vv
13 lines · 11 sloc · 167 bytes · 2f2dde8ad05ec767888dba01f2ad17084a682109
Raw
1module main
2
3fn main() {
4}
5
6pub struct OperateInfo { // implements IperateInfo
7pub mut:
8 title string // title
9 // msg
10 msg string
11 // id
12 id string
13} // operate info
14