Copy from null
SPtr!(int*) otherPtr = null; assert(otherPtr.ptr == null); otherPtr = newShared!int(42); assert(*otherPtr == 42);
See Implementation
Copy from null