Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
modules
/
alias_to_another_module
/
alias.v
9
lines
·
6
sloc
·
154 bytes
·
caa0e25939493aaae571772dc24072f4726bd716
Raw
1
module
alias_to_another_module
2
3
import
another_module
4
5
pub
type
MyAlias = another_module.SomeStruct
6
7
pub
fn
(m MyAlias) alias_method() int {
8
return
42
9
}
10