* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / rv-targ1.C
blob06516dfa2b9c211c14d948595de203d7f20bb752
1 // PR c++/84720
2 // { dg-do compile { target c++11 } }
4 template<int &&>                // { dg-error "not a valid type" }
5 struct a {
6   template<typename...>
7   static void b() {
8     b();
9   }