Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
static_maps_err.vv
11
lines
·
10
sloc
·
118 bytes
·
0d9e5e574703db8fe759215699839084d94f1570
Raw
1
@[unsafe]
2
fn foo() map[string]int {
3
mut static x := map[string]int{}
4
return x
5
}
6
7
fn main() {
8
unsafe {
9
foo()
10
}
11
}
12