Files
c3c/test/test_suite/distinct/distinct_bitstruct_conv.c3
Christoffer Lerno faf073885f Updated fix of #2218
2025-06-24 22:28:14 +02:00

15 lines
135 B
Plaintext

typedef Foo = int;
bitstruct Bar : Foo
{
bool a;
}
fn int main()
{
Bar b;
(Foo)b;
(int)b;
($typefrom(Bar.inner))b;
return 0;
}