Files
c3c/test/test_suite/cast/cast_ok.c3
2025-02-18 18:53:30 +01:00

11 lines
116 B
Plaintext

struct Foo { int a; }
fn void test4()
{
int x = (int)(32);
}
fn void test5()
{
Foo x = (Foo)((Foo){32});
}