1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/nested_unsafe_expr.out

8 lines
220 B
Plaintext

vlib/v/parser/tests/nested_unsafe_expr.vv:4:8: error: already inside `unsafe` block
2 | a := 0
3 | unsafe {
4 | a += unsafe{2}
| ~~~~~~
5 | }
6 | println(a)