Untitled

Run Settings
LanguageC++
Language Version
Run Command
#include <iostream> #include <memory> using namespace std; class Widget{ public: bool operator <(Widget widget){ return true; } }; std::function<bool(Widget&, Widget&)> equals = [](Widget& p1, Widget& p2){ return false; }; int main() { auto wid1 = Widget(); auto wid2 = Widget(); cout << equals(wid1, wid2) << endl; return 0; }
Editor Settings
Theme
Key bindings
Full width
Lines