Files
c3c/test/test_suite/cast/implicit_widen_const_bitstruct.c3
2025-06-23 14:12:34 +02:00

9 lines
99 B
Plaintext

bitstruct Foo : ushort
{
bool bar;
}
fn void main()
{
ushort foo = (ushort)((Foo) {.bar}) & 1;
}