diff --git a/test/test_suite/compile_time/not_yet_initialized.c3 b/test/test_suite/compile_time/not_yet_initialized.c3 index 018b02310..2fbe0b136 100644 --- a/test/test_suite/compile_time/not_yet_initialized.c3 +++ b/test/test_suite/compile_time/not_yet_initialized.c3 @@ -7,11 +7,11 @@ macro foo($Foo) fn void test1() { var $Bar; - foo($Bar); // #error: '$Bar' is not defined yet + foo($Bar); // #error: You need to assign a type to } fn void test2() { var $Bar; - $Bar z; // #error: '$Bar' is not defined yet + $Bar z; // #error: You need to assign a type to } diff --git a/test/test_suite2/compile_time/not_yet_initialized.c3 b/test/test_suite2/compile_time/not_yet_initialized.c3 index 018b02310..2fbe0b136 100644 --- a/test/test_suite2/compile_time/not_yet_initialized.c3 +++ b/test/test_suite2/compile_time/not_yet_initialized.c3 @@ -7,11 +7,11 @@ macro foo($Foo) fn void test1() { var $Bar; - foo($Bar); // #error: '$Bar' is not defined yet + foo($Bar); // #error: You need to assign a type to } fn void test2() { var $Bar; - $Bar z; // #error: '$Bar' is not defined yet + $Bar z; // #error: You need to assign a type to }