* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / decltype36.C
blobc426f69a6d80892d75577aebfc02b7f33b5cdcd2
1 // PR c++/51265
2 // { dg-do compile { target c++11 } }
4 struct Funny
6   int print(int);
7 };
9 template<typename X>
10 void c();
12 template<typename X, X ff>
13 void xx()
15   c<decltype(ff)>();
18 int main()
20   xx<int(Funny::*)(int), &Funny::print>();