bool compareInlinable(int x, int y) { return x > y; }
bool compareNotInlinable(int x, int y);
// Class with a method for comparing two integers.
class Compare {
public:
bool operator()(int x, int y) { return x > y; }
// public: bool compare(int x, int y) { return x > y; }
};