It's common to have reference bound to a simple object as,
T& t = *new T;
But, how to relate a reference with the output of new[] ?
T& ??? = *new T[size];
[Note: Here is one possible way, but I think there should be some better way out, which gives the effect of array.]
Edit: This question is not about good/bad coding practice or if this is common/uncommon to use. I wanted to know if this is syntactically possible or not?