v2 / vlib / v / fmt / tests / module_struct_keep.vv
11 lines · 9 sloc · 123 bytes · 8c448736748baefd677d6157ba88393079677bcd
Raw
1module module_fmt
2
3pub struct MyStruct {
4mut:
5 value int
6 foo mod.Foo
7}
8
9pub fn (m MyStruct) foo() bool {
10 return true
11}
12