The following code does not compile.
int a=1,b=2,c=3;
typedef const int & intlink;
intlink arr[] = {a,b,c,8};
What C++ standard says about it? Is this compiler error?
P.S. I know I could declare class that contains reference and use it in array, but I really want to know why the code above doesn't compile.
Edit: The following code is a good workaround for my queistion.
struct cintref
{
cintref(const int & ref) : ref(ref) {}
operator const int &() { return ref; }
private:
const int & ref;
void operator=(const cintref &);
};
int main()
{
int a=1,b=2,c=3;
//typedef const int & cintref;
cintref arr[] = {a,b,c,8};
}
It is possible to use struct cintref instead of const int & if you want to create the array of references.

intlink value = 8;does work. check if you does not believe. – Alexey Malistov Jul 22 at 11:10