1 // { dg-do compile { target c++11 } }
2 
3 struct A
4 {
5   static constexpr A a = 1;  // { dg-error "22:'constexpr const A A::a' has incomplete type" }
AA6   constexpr A(int i) { }
7 };
8