```fsharp let test (ar: {| IntVal: int |}) = printfn "%d" ar.IntVal test struct {| IntVal=12 |} ``` Output: ``` error FS0001: One tuple type is a struct tuple, the other is a reference tuple ``` The message should refer to anonymous records.