vxx2 / vlib / v / checker / tests / static_maps_err.vv
11 lines · 10 sloc · 118 bytes · 0d9e5e574703db8fe759215699839084d94f1570
Raw
1@[unsafe]
2fn foo() map[string]int {
3 mut static x := map[string]int{}
4 return x
5}
6
7fn main() {
8 unsafe {
9 foo()
10 }
11}
12