-
Notifications
You must be signed in to change notification settings - Fork 831
Closed
Labels
AnalyzersBugImpact-High(Internal MS Team use only) Describes an issue with extreme impact on existing code.(Internal MS Team use only) Describes an issue with extreme impact on existing code.Regression
Milestone
Description
Hello, I believe I may have a encountered a quite recent regression with Sets.
Repro steps
Create script:
#r "nuget: NUnit, 3.13.3"
open System.Collections.Generic
open NUnit.Framework
let a : int Set = set (HashSet(0))
Assert.AreEqual(Set.empty, a)Expected behaviour
Running this with the 7.0.102 SDK works out fine.
No exception is thrown.
Actual behaviour
When I run this with my latest local compiler, I got:
dotnet C:\Users\nojaf\Projects\fsharp\artifacts\bin\fsi\Debug\net7.0\fsi.dll .\set-problem.fsx
NUnit.Framework.AssertionException: Expected is <Microsoft.FSharp.Collections.FSharpSet`1[System.IComparable]>, actual is <Microsoft.FSharp.Collections.FSharpSet`1[System.Int32]>
at NUnit.Framework.Assert.ReportFailure(String message)
at NUnit.Framework.Assert.ReportFailure(ConstraintResult result, String message, Object[] args)
at NUnit.Framework.Assert.That[TActual](TActual actual, IResolveConstraint expression, String message, Object[] args)
at NUnit.Framework.Assert.AreEqual(Object expected, Object actual)
at <StartupCode$FSI_0002>.$FSI_0002.main@() in C:\Users\nojaf\Projects\set-problem.fsx:line 7
at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)
at System.Reflection.MethodInvoker.Invoke(Object obj, IntPtr* args, BindingFlags invokeAttr)
Related information
@T-Gro maybe this is related to a9c194a but that is a wild guess at this point.
Provide any related information (optional):
- Operating system: Windows 11
- .NET Runtime kind: dotnet 7
- Editing Tools (e.g. Visual Studio Version, Visual Studio)
Metadata
Metadata
Assignees
Labels
AnalyzersBugImpact-High(Internal MS Team use only) Describes an issue with extreme impact on existing code.(Internal MS Team use only) Describes an issue with extreme impact on existing code.Regression
Type
Projects
Status
Done