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

11 lines
108 B
V

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