* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-recursion2.C
blobce2280c856fe34fd46744c7b249cf356e5ac61d8
1 // PR c++/70344
2 // { dg-do compile { target c++11 } }
3 // { dg-options -O }
5 struct Z
7   Z () = default;
8   Z (Z const &) = default;
9   constexpr Z (Z &&) {}
12 constexpr int
13 fn (Z v)
15   return fn (v);
18 auto t = fn (Z ());