Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/coreclr/vm/genericdict.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1396,7 +1396,7 @@ Dictionary::PopulateEntry(
// In such case we would need to box the value type before we can dispatch to the implementation.
// This would require us to make a "boxing stub". For now we leave the boxing stubs unimplemented.
// It's not clear if anyone would need them and the implementation complexity is not worth it at this time.
if (pResolvedMD->IsStatic() && !pResolvedMD->GetMethodTable()->IsValueType() && constraintType.GetMethodTable()->IsValueType())
if (!pResolvedMD->GetMethodTable()->IsValueType() && constraintType.GetMethodTable()->IsValueType())
{
SString assemblyName;

Expand Down