I&#39;m trying to write mutual recursive functions using the &quot;mutual&quot; clause. But<br>when Agda loads the program, the operators ↓≤ and ↑≤  are hightlighted in orange and<br>the &quot;Checked&quot; message does not appear. What&#39;s the problem? <br>
<br>mutual<br>  _↓≤_ : Simple -&gt; Simple -&gt; Bool<br>  ...definition uses ↑≤...<br><br>  _↑≤_ : Type -&gt; Type -&gt; Bool<br>  ...definition uses ↓≤...<br><br>Thanks you in advance<br><br>