v2 / vlib / v / fmt / tests / interface_fields_with_pre_comments_keep.vv
14 lines · 12 sloc · 126 bytes · b25288338c6b96d18eb76cda54b3fd4815b88877
Raw
1module main
2
3fn main() {
4}
5
6pub interface IOperateInfo {
7mut:
8 // title
9 title string
10 // msg
11 msg string
12 // id
13 id string
14}
15