1 // { dg-do compile { target c++11 } }
2 
3 class base
4 {
5 protected:
base()6   constexpr base() { }
7 };
8 
9 struct A : base { };
10 
main()11 int main()
12 {
13   A a;
14 }
15