* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / conv-tmpl1.C
blobeb40dd66a5c5a59e2bfaad01d8cceeb32bd65f95
1 // Test for Core 2189.
2 // { dg-do compile { target c++11 } }
4 template <class T>
5 using Fn = void (*)(T);
7 struct A
9   template <class T>
10   operator Fn<T>();
13 int main()
15   A()(42);