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

16 lines
168 B
Plaintext

module test;
import std::io;
macro foo() => 3;
macro bar() => 4;
bitstruct Foo : int
{
int a : 1..2;
int b : foo()..(bar()) @tag("foo", "a");
}
fn void main()
{
}