[ERROR]
A reference was not initialized when it was declared.
int j;
int& i // = j; missing
Initialize the reference with an object of the same type as the reference points to.