We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12eb039 commit 37551d7Copy full SHA for 37551d7
src/fsharp/FSharp.Core/local.fs
@@ -74,7 +74,7 @@ module internal List =
74
cons
75
76
let countBy (dict:Dictionary<_, int>) (keyf:'T -> 'Key) =
77
- use mutable ie = dict.GetEnumerator()
+ let mutable ie = dict.GetEnumerator()
78
if not (ie.MoveNext()) then []
79
else
80
let res = freshConsNoTail (keyf ie.Current.Key, ie.Current.Value)
0 commit comments