-
Notifications
You must be signed in to change notification settings - Fork 794
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
"#if" directive around nullness removed refactored in HashMultiMap #18210
base: main
Are you sure you want to change the base?
"#if" directive around nullness removed refactored in HashMultiMap #18210
Conversation
from src/Compiler/Utilities/HashMultiMap.fs and fsi Related: dotnet#18061 (partially addresses) <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> - [x] Release notes entry updated: in `docs/release-notes/.FSharp.Compiler.Service/9.0.200.md`,
❗ Release notes requiredCaution No release notes found for the changed paths (see table below). Please make sure to add an entry with an informative description of the change as well as link to this pull request, issue and language suggestion if applicable. Release notes for this repository are based on Keep A Changelog format. The following format is recommended for this repository:
If you believe that release notes are not necessary for this PR, please add NO_RELEASE_NOTES label to the pull request. You can open this PR in browser to add release notes: open in github.dev
|
@progressive-galib
|
@@ -254,7 +254,7 @@ module SimplePickle = | |||
when 'T:not null | |||
#endif | |||
> = | |||
{ tbl: HashMultiMap<'T, int> // This should be "Dictionary" | |||
{ tbl: HashMultiMap<'T, int when 'T: not null> // This should be "Dictionary" |
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.
Hi @progressive-galib - this won't compile :)
'T is already defined and constrained up above, this should hold for tbl
- I don't think changes here are needed.
Description
"#if" directive around nullness removed refactored in HashMultiMap src/Compiler/Utilities/HashMultiMap.fs and fsi
Related: #18061 (partially addresses)
reopened due to closing of #18202 by mistake by force pushing.