```rescript type t = {x: int, y: string} type t2 = {x: string, y: float} type t3 = {...t, ...t2} ``` (correctly) gives the error message "Two labels are named x". But the location of the error message is wrong/confusing, as it points to t2, not t3: 