* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-temp1.C
blobd06543632703708d3ef5d863e1e48cb432b3da09
1 // { dg-do compile { target c++11 } }
3 struct A { int i; };
4 constexpr A f2 (const A& a) { return a; }
5 constexpr int f1 (const A &a) { return f2(a).i; }
6 A g(const A &a)
8   return { f1(a) };