VZ
Size: a a a
VL
AH
VL
VL
AH
AH
type IValue<'a> =
abstract member Value: 'a
type Foo<'a, 'b> =
{ A: 'a; B: 'b }
interface IValue<'a> with
member this.Value = this.A
interface IValue<'b> with
member this.Value = this.BAH
AH
AH
AH
I
I