8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Consider the following snippet.
data U : Set where u : U test : U test = let X = U a : X a = u in {!helper a!} -- C-c C-h
Currently, the signature of helper function is helper : U → U, but it would be better to print helper : (let X = U) → X → U
helper : U → U
helper : (let X = U) → X → U