Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
func_with_static_keyword_err.vv
7
lines
·
6
sloc
·
79 bytes
·
89c56fb5eea5102ce60d61b649709ae270adec33
Raw
1
fn a__static__b() (int,int) {
2
return 1,2
3
}
4
5
fn main() {
6
a := a__static__b()
7
}