Compiler Error C2527

'identifier' : array of references must be fully initialized

Elements of the specified array were not initialized.

An initializer must be supplied for every element of an array of references.

The following is an example of this error:

int a, b, c;
int &ai[3];               // error, elements not initialized
int &ai[3] = { a, b, c }; // OK