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