'name' : arrays of references are illegal
Because pointers to references are not allowed, arrays of references are not possible. The following sample generates C2234:
main() { int i,j,k,l; int &array[4] = {i,j,k,l}; // C2234, delete the & to resolve the error }