Update tests to (Foo) { ... } syntax.

This commit is contained in:
Christoffer Lerno
2025-02-18 18:53:30 +01:00
parent 168c11e006
commit cbacd64987
98 changed files with 449 additions and 551 deletions

View File

@@ -6,11 +6,11 @@ struct Test
char[2] id;
}
Test t = Test{"id"};
Test t = (Test){"id"};
fn int main()
{
io::printn(t);
Test y = Test { "id" };
Test y = (Test) { "id" };
io::printn();
return 0;
}