mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 03:51:18 +00:00
13 lines
116 B
Plaintext
13 lines
116 B
Plaintext
// #target: macos-x64
|
|
module test;
|
|
bitstruct Foo : uint
|
|
{
|
|
bool test : 2;
|
|
}
|
|
|
|
fn int main()
|
|
{
|
|
~(Foo)2;
|
|
return 0;
|
|
}
|