xref: /llvm-project/lldb/test/API/lang/cpp/operator-overload/a.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 class Patatino {
2 public:
3   double _blah;
Patatino(int blah)4   Patatino(int blah) : _blah(blah) {}
5 };
6 
operator ==(const Patatino & a,const Patatino & b)7 bool operator==(const Patatino& a, const Patatino& b) {
8   return a._blah < b._blah;
9 }
10