// P0846R0 // { dg-do compile } // { dg-options "-std=c++2a" } template struct X { int first = 0; }; int f () { X x, y; bool b = x.first < y.first; return b; }