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