(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
operator12.C
// PR c++/59707

struct T {
    template<class D> operator D*() const;
};

void f(T x) {
    x < x;			// { dg-error "no match" }
}