fork download
  1. class Test
  2. {
  3. public:
  4. operator int() { return 1; };
  5. };
  6.  
  7.  
  8. int main(int argc, char * argv[])
  9. {
  10. int i;
  11. Test t;
  12. i = t;
  13. }
  14.  
Success #stdin #stdout 0s 5488KB
stdin
Standard input is empty
stdout
Standard output is empty