1 // { dg-do compile { target c++11 } }
2 
3 constexpr const int A = 42;
4 const int &B = A;
5 static_assert(&A == &B, "Bug");
6