* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-empty3.C
bloba9cd98fa4e5e6cee057eba73f2ed5ba091794b8e
1 // { dg-do compile { target c++11 } }
3 struct IsLiteral {};
5 constexpr auto ab = IsLiteral();
7 constexpr IsLiteral bar(IsLiteral x) { return x; }
9 constexpr auto xy = bar(ab);