mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
15 lines
223 B
Plaintext
15 lines
223 B
Plaintext
// #target: macos-x64
|
|
module test;
|
|
char[1][*] a = { [0] = { [0] = 1 } };
|
|
char[1][1] b = { [0] = { [0] = 1 } };
|
|
char[2][*] c = { [0] = { [0] = 1 } };
|
|
char[4][1] d = { [0] = { [0] = 1 } };
|
|
|
|
fn void main()
|
|
{
|
|
a;
|
|
b;
|
|
c;
|
|
d;
|
|
}
|