-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Type.ContainsGenericParameters for function pointers #90864
Conversation
Tagging subscribers to this area: @dotnet/area-system-reflection |
@@ -104,6 +104,31 @@ BOOL TypeDesc::IsSharedByGenericInstantiations() | |||
return FALSE; | |||
} | |||
|
|||
BOOL TypeDesc::ContainsGenericVariables(BOOL methodOnly) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The implementation mirrors structure of IsSharedByGenericInstantiations
/azp run runtime-extra-platforms |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run runtime-extra-platforms |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run runtime-extra-platforms |
Azure Pipelines successfully started running 1 pipeline(s). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Mono part looks good, thank you!
Consider backporting to release/8.0; missing functionality for new feature added in 8.0. cc @ericstj |
/backport to release/8.0 |
Started backporting to release/8.0: https://github.com/dotnet/runtime/actions/runs/5944846172 |
Fixes #84916