An ObjectReference can only be created for a valid, non-null object reference.
| 41 | |
| 42 | /// An ObjectReference can only be created for a valid, non-null object reference. |
| 43 | ObjectReference() = delete; |
| 44 | |
| 45 | /// An ObjectReference can never point to a nullptr! |
| 46 | ObjectReference (decltype (nullptr)) = delete; |
nothing calls this directly
no test coverage detected