1 // PR c++/58609
2 // { dg-do compile { target c++11 } }
3 
4 struct A
5 {
6   static constexpr int&& i = 0;
7 };
8 
9 int j = A::i;
10