Files
c3c/test/test_suite/cast/cast_ok.c3
2021-11-16 17:46:44 +01:00

11 lines
114 B
C

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