* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-conv2.C
blobc64fb3d2fa0c2b63598d3e4caec781ec5fef86c7
1 // { dg-do compile { target c++11 } }
3 template <int I> void f();
5 struct A { constexpr operator int() { return 24; } };
7 template <class T> constexpr void g(T t)
9   f<t>();
12 int main()
14   g(A());