You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Compiler/Checking/CheckDeclarations.fs
+13-11Lines changed: 13 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -4218,18 +4218,20 @@ module TcDeclarations =
4218
4218
| Result res ->
4219
4219
// Update resolved type parameters with the names from the source.
4220
4220
let_,tcref,_ = res
4221
+
4222
+
// Disabled to allow deterministic parallel type checking. See https://github.com/dotnet/fsharp/issues/19033
4223
+
// TODO: mutating typar here can lead to a race during parallel type checking.
4224
+
// Some type extensions can end up with a wrong type argument name.
4225
+
// This will break deterministic builds.
4221
4226
4222
-
if tcref.TyparsNoRange.Length = synTypars.Length then
0 commit comments