fork download
  1. struct Var {};
  2.  
  3. template<typename L>
  4. bool operator > (L , int ) {
  5. return false;
  6. }
  7.  
  8. template<typename R>
  9. bool operator > (int , R ) {
  10. return false;
  11. }
  12.  
  13. Var d;
  14.  
  15. int main() {
  16. d > 10;
  17. return 0;
  18. }
Success #stdin #stdout 0s 2724KB
stdin
Standard input is empty
stdout
Standard output is empty