1 // { dg-do compile { target c++11 } }
2 
3 struct A { } a;
f(A a)4 constexpr int f (A a) { return 42; }
5 constexpr int i = f(a);
6