#include <iostream>

class TST
{
  public:
    operator bool()
    {
        return true;
    }

    void operator<< (int x)
    {
        std::cout << x;
    }
};

int main()
{
    TST x;
    x >> 3;
}
