Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[interp] Fix GetType called on ptr constrained to Nullable`
We were statically optimizing this call to return the actual constrained class type, which is incorrect for nullables, because boxing of a nullable (as part of the constrained call) actually creates an object with the type of the nullable's value (or null if there is no value).
- Loading branch information