fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct abc {};
  5.  
  6. std::string operator & (abc) {
  7. return "Fuck you, liar";
  8. }
  9.  
  10. int main() {
  11. cout << &abc() << endl;
  12. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
Fuck you, liar