* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / decltype53.C
blob4580e97b7521a3beb1dd8e8b164d375354ebf073
1 // PR c++/57092
2 // { dg-do compile { target c++11 } }
4 template <void (*F)(int)>
5 class B {
6   decltype(F) v;
7 };
9 void foo(int) {}
11 B<foo> o;