We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5e59d5 commit cccb3daCopy full SHA for cccb3da
1 file changed
tests/fsharp/core/members/set-only-property/calls.fsx
@@ -8,11 +8,11 @@ type Maker =
8
// so long https://github.com/dotnet/fsharp/issues/8351 isn't fixed, Prop1 setters are failing
9
let a = csharp.Class(Prop1=1)
10
let b = basic.BasicClass(Prop1=1)
11
-let c = fsharp.Class(Prop1=1)
+let c = fsharp.Class(Prop1=1) // this one works, inconsistent but correct.
12
13
let aa = Maker.mkCs(Prop1=1)
14
let bb = Maker.mkVb(Prop1=1)
15
-let cc = Maker.mkFs(Prop1=1)
+let cc = Maker.mkFs(Prop1=1) // this one works, inconsistent but correct.
16
17
// those are expected to fail, albeit with inconsistent error messages / marked ranges
18
let aaa = csharp.Class(Prop2=1)
0 commit comments