prog.cpp: In function 'int main()':
prog.cpp:4:14: error: declaration of 'x1' as array of references
int& x1[5];
^
prog.cpp:14:18: error: invalid operands of types 'int*' and 'int' to binary 'operator*'
int *x5 = x3*5;
^
prog.cpp:17:20: error: invalid operands of types 'int*' and 'int*' to binary 'operator+'
auto x6 = x3 + x4;
^
prog.cpp:20:10: error: 'z' declared as reference but not initialized
int& z;
^