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.
In the following example name is 42 instead of "Name" because inlining presumably takes the value at face value and inlines the first element.
name
42
"Name"
type a = { number: int, name: string, } type b = { name: string, } let a: a = { number: 42, name: "Name", } let name = (a :> b).name