From: Brendan Hansen Date: Mon, 6 Mar 2023 02:48:30 +0000 (-0600) Subject: fixed: test cases broken for new pointer syntax X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=9514cb1dfcf4c25d39f3e68d5d108e99887c8a2e;p=onyx.git fixed: test cases broken for new pointer syntax --- diff --git a/tests/auto_poly b/tests/auto_poly index 71f55b28..827f6585 100644 --- a/tests/auto_poly +++ b/tests/auto_poly @@ -5,7 +5,7 @@ Vector2(i32) { x = 1, y = 1 } i32 to [] u8 1234 WOOT WOOT!!! -type of thing is ^Thing(f32) +type of thing is &Thing(f32) thing is Thing(f32) { value = 0.0000 } 0 2 diff --git a/tests/struct_use_pointer_member b/tests/struct_use_pointer_member index 141715b4..0b2b5b79 100644 --- a/tests/struct_use_pointer_member +++ b/tests/struct_use_pointer_member @@ -1,2 +1,2 @@ Hello, I am Billy! -Go away!! (^Person) -> void +Go away!! (&Person) -> void