v2 / vlib / v / tests / modules / alias_to_another_module / alias.v
9 lines · 6 sloc · 154 bytes · caa0e25939493aaae571772dc24072f4726bd716
Raw
1module alias_to_another_module
2
3import another_module
4
5pub type MyAlias = another_module.SomeStruct
6
7pub fn (m MyAlias) alias_method() int {
8 return 42
9}
10