Advertisement
Guest User

Untitled

a guest
Feb 6th, 2013
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. class MyStringClass
  2. {
  3. };
  4.  
  5. MyStringClass operator & (const char String1 [], const MyStringClass & String2)
  6. {
  7.     return MyStringClass();
  8. }
  9.  
  10. int main ()
  11. {
  12.     MyStringClass a;
  13.     MyStringClass b;
  14.  
  15.     a = "foo" & b;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement