1 struct A {
2 };
3 
4 template <typename T>
5 struct S : public A {
6   using A::operator(); // { dg-error "no member" }
7 };
8