fork download
  1. #include <iostream>
  2.  
  3. class X {
  4. public:
  5. operator bool() const {
  6. return true;
  7. }
  8. };
  9.  
  10. int main() {
  11. X x;
  12.  
  13. if (x) {
  14. std::cout << x + 100;
  15. }
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 2852KB
stdin
Standard input is empty
stdout
101