Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
mut_array_get_element_address_err.out
7
lines
·
7
sloc
·
307 bytes
·
0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1
vlib/v/checker/tests/mut_array_get_element_address_err.vv:3:17: error: cannot take the address of mutable array elements outside unsafe blocks
2
1 | fn main() {
3
2 | mut arr_int := [int(23), 45, 7, 8]
4
3 | ele := &arr_int[1]
5
| ~~~
6
4 | println(ele)
7
5 | }
8