diff --git a/vlib/v/checker/tests/auto_ref_voidptr.out b/vlib/v/checker/tests/auto_ref_voidptr.out index a3087290dd..e7b979df8c 100644 --- a/vlib/v/checker/tests/auto_ref_voidptr.out +++ b/vlib/v/checker/tests/auto_ref_voidptr.out @@ -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)