13 lines
241 B
Plaintext
13 lines
241 B
Plaintext
|
|
int arrUnsized[];
|
||
|
|
int arrFloat[1.];
|
||
|
|
int arrBool[true];
|
||
|
|
|
||
|
|
int unsized_in_expression() { return int[](0)[0]; }
|
||
|
|
|
||
|
|
/*%%*
|
||
|
|
unsized arrays are not permitted here
|
||
|
|
array size must be an integer
|
||
|
|
array size must be an integer
|
||
|
|
missing index in '[]'
|
||
|
|
*%%*/
|