1 // { dg-do compile { target c++11 } }
2 struct A
3 {
4   operator int();
5 };
6 
7 template <typename... T> struct B : A
8 {
9   using A::operator T; // { dg-error "parameter packs|T" }
10 };
11 
12 B<int> b;
13