In the code below the expected type is `int` and the actual is `string`: ```fsharp module Module type T() = static member P1 = T.P2 + 1 static member P2 = "" ``` <img width="510" height="135" alt="Image" src="https://github.com/user-attachments/assets/e06c7390-6374-4cea-bbe4-93c74415b1da" /> However, the diagnostic data captures the opposite: <img width="1157" height="272" alt="Image" src="https://github.com/user-attachments/assets/2748fff5-2b8e-4e8f-a0a9-7dbd71b6ade1" /> This seems to be a regression in #18851. cc @DedSec256