v/vlib/v/fmt/tests/module_struct_keep.vv

12 lines
123 B
V

module module_fmt
pub struct MyStruct {
mut:
value int
foo mod.Foo
}
pub fn (m MyStruct) foo() bool {
return true
}