mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
11 lines
139 B
Plaintext
11 lines
139 B
Plaintext
module test;
|
|
struct Abc
|
|
{
|
|
int[2] a;
|
|
int b;
|
|
}
|
|
fn int main()
|
|
{
|
|
Abc a = { .a = {} .b = 3 }; // #error: A comma or '}' was expected here.
|
|
}
|