Is it valid to declare a constant reference in C++ (where the ref itself is const, not the referenced object)
I am aware that once a reference is bound to an object it cannot be changed.
Therefore making the reference itself const (unlike a reference to a const object) cannot have any practical meaning.