* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-60245.C
blob803a2299677d8726777e83c742423d4ce3e9ad9c
1 // PR c++/60245
2 // { dg-do compile { target c++11 } }
4 constexpr int Apply(const int in, int (*f)(const int&)) { return f(in); }
6 using Foo = int;
7 static constexpr int id(const Foo& i) { return i; }
8 static constexpr int results1 = Apply(0, &id);