Guest User

Untitled

a guest
Jul 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. class MyClass {
  2.   MyClass opAssign(Variant v) {
  3.     if (v.type == typeid(MyClass))
  4.       this = v.get!(MyClass);
  5.    
  6.     return this;
  7.   }
  8. }
Add Comment
Please, Sign In to add comment