forked from dotnet/fsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
44 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
...ents/MemberDefinitions/NamedArguments/PropertySetterAfterConstruction02NamedExtensions.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// #Regression #Conformance #DeclarationElements #MemberDefinitions #NamedArguments | ||
#light | ||
|
||
// FSB 1368, named arguments implicitly using property setters for generic class do not typecheck correctly | ||
|
||
module GenericClass = | ||
type S<'a,'b> = | ||
class | ||
val mutable x : 'a | ||
val mutable y : 'b | ||
member obj.X with set(v) = obj.x <- v | ||
member obj.Y with set(v) = obj.y <- v | ||
new(a,b) = { x=a; y=b } | ||
end | ||
type S<'a,'b> with | ||
member x.XProxyIntrinsic with set (v:'a) = x.X <- v | ||
member x.YProxyIntrinsic with set (v:'b) = x.Y <- v | ||
module Extensions = | ||
type S<'a,'b> with | ||
member x.XProxyOptional with set (v:'a) = x.X <- v | ||
member x.YProxyOptional with set (v:'b) = x.Y <- v | ||
|
||
open Extensions | ||
|
||
// Standard construction | ||
let x1 = S<int,string>(1,"1", XProxyIntrinsic = 42, YProxyIntrinsic = "42") | ||
if x1.x <> 42 then exit 1 | ||
if x1.y <> "42" then exit 1 | ||
|
||
let x2 = S<_,_>(1,"1") | ||
x2.XProxyOptional <- 43 | ||
x2.YProxyOptional <- "43" | ||
if x2.x <> 43 then exit 1 | ||
if x2.y <> "43" then exit 1 | ||
|
||
let x3 = S<_,_>(1,"1", XProxyOptional = 44, YProxyOptional = "44") | ||
if x3.x <> 44 then exit 1 | ||
if x3.y <> "44" then exit 1 | ||
exit 0 | ||
|