Files
c3c/resources/testfragments/lexertest.c3
Christoffer Lerno 974cd0acc5 Rollback global.
2021-11-17 10:37:23 +01:00

24 lines
169 B
C

module foo;
const int = 0;
struct Boo
{
int i;
union
{
int death;
};
}
fn void test()
{
int i = 0;
i++;
if (i < 100)
{
int j = 0;
j += i;
return;
}
}