1// PR c++/41994
2
3template<typename T> struct A
4{
5  operator T();
6  A() { T (A::*f)() = &A::operator T; }
7};
8
9A<int> a;
10