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