blob: 63b2377bc6e044f8edf685f07fedf32f6cb34a6e [file] [log] [blame]
// P0846R0
// { dg-do compile }
// { dg-options "-std=c++2a" }
template<class>
struct X {
int first = 0;
};
int
f ()
{
X<int> x, y;
bool b = x.first < y.first;
return b;
}