blob: c4030cd2f4d684693c56e2d8ba5889441b2d8b1b [file] [log] [blame]
// This should continue to work.
// { dg-do compile { target c++20 } }
template<class T>
struct A {
template<class U>
bool operator==(const A<U>&);
};
int main()
{
A<int> a1;
A<void> a2;
return a1 == a2;
}