fork(3) download
  1. #include <stdint.h>
  2. #include <iostream>
  3.  
  4.  
  5. using namespace std;
  6.  
  7. struct One
  8. {
  9. bool operator==(const One &) { return false; }
  10. };
  11. One operator "" _u( unsigned long long int ) { return One{}; }
  12.  
  13. int main()
  14. {
  15. cout << (1_u == 1_u);
  16.  
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
Standard output is empty