1 // PR c++/88293
2 // { dg-do compile { target c++11 } }
3 
4 struct A
5 {
AA6   constexpr A () { }
7 };
8 
9 const A &a = (A (), A ());
10