7 lines
99 B
Plaintext
7 lines
99 B
Plaintext
|
// Expect 2 errors
|
||
|
|
||
|
void array_decl() { float[123] x; }
|
||
|
|
||
|
void array_ctor() { float[3](1, 2, 3); }
|
||
|
|