(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
pr60430.C
// { dg-do compile { target c++11 } }

constexpr const int A = 42;
const int &B = A;
static_assert(&A == &B, "Bug");