* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / decltype38.C
blob97ebb33a0311656698137778daca9c27a27ca133
1 // PR c++/53498
2 // { dg-do compile { target c++11 } }
4 template<typename... Args>
5 struct B
7   template<typename U>
8   static
9   void b(const U& u, const Args&... args,
10          decltype(u.f(args...)) dummy)
11   {
12   }
15 int main() {
16   B<int> b;