* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr38795.C
blob89ce0d368f75a88c8ba4b7eaf24847f2bc129892
1 // PR c++/38795
2 // { dg-do compile { target c++11 } }
4 template<typename... T> int foo(int i)
6   return *reinterpret_cast<T*>(i);      // { dg-error "not expanded with|T" }
9 void bar(int i)
11   foo<int>(i);