mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
8 lines
127 B
Plaintext
8 lines
127 B
Plaintext
import std;
|
|
macro void test(int[2][6] a)
|
|
{
|
|
}
|
|
fn void main()
|
|
{
|
|
test({ { 1, 2 } }); // #error: Too few elements in initializer
|
|
} |