mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
ci: fix failing tests
This commit is contained in:
parent
a7f484d9a7
commit
9d056168ae
@ -1,11 +1,11 @@
|
|||||||
vlib/v/checker/tests/unsafe_required.v:4:6: error: pointer arithmetic is only allowed in `unsafe` blocks
|
vlib/v/checker/tests/unsafe_required.v:4:3: error: pointer arithmetic is only allowed in `unsafe` blocks
|
||||||
2 | mut v := 5
|
2 | mut v := 5
|
||||||
3 | mut p := &v
|
3 | mut p := &v
|
||||||
4 | p++
|
4 | p++
|
||||||
| ~~
|
| ~~
|
||||||
5 | p += 2
|
5 | p += 2
|
||||||
6 | _ := v
|
6 | _ := v
|
||||||
vlib/v/checker/tests/unsafe_required.v:5:7: error: pointer arithmetic is only allowed in `unsafe` blocks
|
vlib/v/checker/tests/unsafe_required.v:5:4: error: pointer arithmetic is only allowed in `unsafe` blocks
|
||||||
3 | mut p := &v
|
3 | mut p := &v
|
||||||
4 | p++
|
4 | p++
|
||||||
5 | p += 2
|
5 | p += 2
|
||||||
|
Loading…
Reference in New Issue
Block a user