blob: 06516dfa2b9c211c14d948595de203d7f20bb752 [file] [log] [blame]
// 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();
}
};