1 // { dg-do compile { target c++11 } }
2 
3 struct A { };
4 struct B: A { };
5 
6 constexpr B b { };
7 constexpr A a = b;
8