I write the below code in Agda.
open import Relation.Binary.PropositionalEquality
open import Data.Unit
data : Set where
tt :
ff :
test_a : tt ≡ tt
test_a = refl
test_b : ff ≡ ff
test_b = refl
When I load the above code, I get yellow highlight with
tt ≡ tt
at line 8. What is wrong with the code?