Loading

Paste #pv1vh4aqt

  1. struct Boo {
  2.     int a;
  3.  
  4.     Boo& operator->()
  5.     {
  6.         return *this;
  7.     }
  8. };
  9.  
  10. int main(int argc, char **argv)
  11. {
  12.     Boo boo;
  13.     boo->a = 1;
  14. }

Comments