mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
- Additional fix to #2515 - Compiler assert when getting a member of a `bitstruct : char @bigendian` #2517.
7 lines
117 B
Plaintext
7 lines
117 B
Plaintext
bitstruct Test : char
|
|
{
|
|
char type : 0..2;
|
|
}
|
|
|
|
$assert !$defined((Test){123});
|
|
$assert !$defined((Test){.type = 123}); |