[ERROR]
The reference type is not constant, the assigned type is.
void main(void) {
const int i=1;
int &p=i;
}
Either both are const or both are not const.