blob: 42daeaa3dcb1aa9eaf4571d96960136d786f3213 [file] [log] [blame]
// PR c++/85093
// { dg-do compile { target c++11 } }
template<class V> class A {};
template<class V, class... G> class B {
typedef A<V,G...> AB; // { dg-error "arguments" }
AB ab;
};
int main() {
B<int,double> b;
}