The following program produces completly wrong diagnostics: ``` model example(arg: Bool) : Ex = { 1 + 2 } constant n = 3 * $example(5) ``` <img width="627" height="470" alt="Image" src="https://github.com/user-attachments/assets/02d36fed-95eb-4256-9a6d-a647f9e6bbc8" /> - Why does it produce 3 errors? - Why is the location missing? - Why does it talk about ID when it was an INT?
The following program produces completly wrong diagnostics: