mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
21 lines
169 B
Plaintext
21 lines
169 B
Plaintext
/*
|
|
enum Bar : inline usz
|
|
{
|
|
FOO,
|
|
BAR,
|
|
}
|
|
|
|
enum Bar2 : usz (inline int x)
|
|
{
|
|
FOO = 1,
|
|
BAR = 4,
|
|
}
|
|
|
|
int[Bar.BAR] x;
|
|
|
|
fn int main()
|
|
{
|
|
char[Bar2.BAR] a;
|
|
return 0;
|
|
}
|
|
*/ |