blob: 86d5c2e82b5abe89b02c6377eed786d8692d79c9 [file] [log] [blame]
// PR c++/13592
struct S {
void operator()(int);
};
struct A {
template <typename> void foo();
S s;
};
template <typename> void A::foo() {
s(0);
}