blob: bc8e91de4cd7248f787c41218e33c5eb2294838b [file] [log] [blame]
// PR c++/59707
struct T {
template<class D> operator D*() const;
};
void f(T x) {
x < x; // { dg-error "no match" }
}