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

ci: revert nil to voidptr(u64(0)) in voidptr_dereference_err.vv too. nil should have its own .vv/.out pair.

This commit is contained in:
Delyan Angelov 2022-07-21 22:43:06 +03:00
parent cdefb878d6
commit cf42ba2b80
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -1,5 +1,5 @@
fn main() {
mut a := unsafe { nil }
mut a := unsafe { voidptr(u64(0)) }
mut b := 123
a = &b
println(*a)