blob: fe80460c9c54a7a20f4d21733a5288904462cf0d [file] [log] [blame]
// { dg-do compile { target c++20 } }
template<typename T>
concept Eq = requires(T t) { t == t; }; // { dg-message "in requirements" }
struct Nt {
template<Eq T> friend void f(T) { }
} nt;
template<typename T> struct S;
template<Eq T>
void proc(S<T>*);
template<typename T>
struct S {
friend bool operator==(S, S) requires Eq<T> { return true; }
friend void proc<>(S*); // { dg-error "does not match any template declaration" }
};
struct X { } x;
int main() {
// f(0); // OK
f(nt); // { dg-error "" }
f(x); // { dg-error "3:'f' was not declared" }
S<int> si;
si == si; // OK
S<X> sx;
sx == sx; // { dg-error "no match" }
}