1 // PR c++/64954
2 // { dg-do compile { target c++11 } }
3 
4 struct A {};
main()5 int main() {
6     A a;
7     constexpr A b = a;
8 }
9