1 // { dg-do compile { target c++11 } }
2 
3 struct A
4 {
5   int i;
AA6   constexpr A() { }		// { dg-error "A::i" "" { target c++17_down } }
7 };
8