fork(1) download
  1. #include <iostream>
  2.  
  3. struct X{
  4. operator bool() const{
  5. return true;
  6. }
  7. };
  8.  
  9. int main() {
  10. X x;
  11. std::cout << x << "\n";
  12. }
Success #stdin #stdout 0s 4548KB
stdin
Standard input is empty
stdout
1