blob: d0a8b951a029e298fdb7a543aad2e888279069cf [file] [log] [blame]
// { dg-do compile { target c++11 } }
struct A
{
operator int();
};
template <typename... T> struct B : A
{
using A::operator T; // { dg-error "parameter packs|T" }
};
B<int> b;