123
// file.h extern const int& reference_to_const_int ;
12345678910
// file.cc #include "file.h" namespace { int modifiable_lvalue = 100 ; } const int& reference_to_const_int = modifiable_lvalue ;