fork download
  1. struct X
  2. {
  3. operator bool () const { return true; }
  4. };
  5.  
  6. int main()
  7. {
  8. if (X x = X())
  9. {
  10. // Whatever...
  11. }
  12. }
  13.  
Success #stdin #stdout 0s 2892KB
stdin
Standard input is empty
stdout
Standard output is empty