* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / ref-qual-multi-neg.C
blob5be89423f031cc32383c6b21aa2876ff8da3fe2d
1 // { dg-require-effective-target c++11 }
3 class Foo
5 public:
6   void bar() const && & { }  // { dg-error "multiple ref-qualifiers" }
7 };