blob: 89f428d5fc50d2c0a45a5417c2e9b8c17a26983d [file] [log] [blame]
template <typename T> struct A {};
struct B {
operator A<B>();
};
template <typename T>
void f() { B::operator A<T>; }