tests: fix auto ref voidptr test

This commit is contained in:
Alexander Medvednikov 2025-01-13 19:24:41 +03:00
parent 6b3724df3a
commit a20fff99e0

View File

@ -1,4 +1,4 @@
auto_ref_voidptr.vv:9:9: warning: automatic Aa referencing/dereferencing into voidptr is deprecated and will be removed soon; use `foo(&x)` instead of `foo(x)`
vlib/v/checker/tests/auto_ref_voidptr.vv:9:9: warning: automatic Aa referencing/dereferencing into voidptr is deprecated and will be removed soon; use `foo(&x)` instead of `foo(x)`
7 | fn main() {
8 | a := Aa{}
9 | foo(3, a)