1 // PR c++/13592
2 
3 struct S {
4   void operator()(int);
5 };
6 
7 struct A {
8   template <typename> void foo();
9   S s;
10 };
11 
foo()12 template <typename> void A::foo() {
13   s(0);
14 }
15