Guest User

Untitled

a guest
Feb 24th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. struct S
  2. {
  3. public static bool operator ==(in S x, in S y)
  4. {
  5. return true;
  6. }
  7.  
  8. public static bool operator ==(S x, S y)
  9. {
  10. return true;
  11. }
  12.  
  13. public static bool operator !=(S x, S y)
  14. {
  15. return false;
  16. }
  17. }
Add Comment
Please, Sign In to add comment