(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
rv-targ1.C
// PR c++/84720
// { dg-do compile { target c++11 } }

template<int &&>		// { dg-error "not a valid type" }
struct a {
  template<typename...>
  static void b() {
    b();
  }
};