Files
c3c/test/test_suite/bitstruct/bitstruct_negate_cast.c3t

13 lines
116 B
Plaintext

// #target: macos-x64
module test;
bitstruct Foo : uint
{
bool test : 2;
}
fn int main()
{
~(Foo)2;
return 0;
}