<div dir="ltr"><div>Hi Sergey,</div><div><br></div><div>A part of the context of the form `X = X₁ : Set (ℓ ⊔ ℓ′)  (not in scope)` can mean two things:</div><div><br></div><div>1. either there is a variable named `X` in scope, but it is shadowed by another variable `X` so Agda decided to rename it to `X₁`</div><div>2. or the variable `X` is an implicit argument and Agda decided to pro-actively rename it to `X₁` to avoid a name conflict with another (implicit or explicit) variable</div><div><br></div><div>In case 1., you need to find out which other variable is also named `X` and rename one of them. In case 2., you need to bind the implicit argument explicitly, e.g. by writing `{X = X}` in the left-hand side of the clause.</div><div><br></div><div>-- Jesper</div><div><br></div><div>ps: To the Agda devs: maybe in the first case Agda should display `(shadowed)` instead of `(not in scope)` so it is easier to distinguish between the two cases?<br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Mar 23, 2020 at 2:26 AM Sergey Goncharov <<a href="mailto:sergey.goncharov@fau.de">sergey.goncharov@fau.de</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi All,<br>
<br>
I have the following problem: in course of a proof, as a part of the <br>
running context, I have:<br>
<br>
X = X₁ : Set (ℓ ⊔ ℓ′)  (not in scope)<br>
<br>
and when I try to resolve a hole in this context I get<br>
<br>
X !=< X₁ of type Set (ℓ ⊔ ℓ′)<br>
when checking that the expression ... has type ...<br>
<br>
It is hard to provide more details, because the complete example is <br>
large, and as usual everything depends on everything else. But maybe <br>
someone could help me with a general understanding how these "not in <br>
scope" definitional equalities can be avoided, and why they are not <br>
effective anyway?<br>
<br>
Thanks,<br>
Sergey<br>
<br>
_______________________________________________<br>
Agda mailing list<br>
<a href="mailto:Agda@lists.chalmers.se" target="_blank">Agda@lists.chalmers.se</a><br>
<a href="https://lists.chalmers.se/mailman/listinfo/agda" rel="noreferrer" target="_blank">https://lists.chalmers.se/mailman/listinfo/agda</a><br>
</blockquote></div>