Agda-2.3.2.2: test/fail/WithoutK6.agda
{-# OPTIONS --without-K --show-implicit #-}
module WithoutK6 where
-- Equality defined with two indices.
data _≡_ {A : Set} : A → A → Set where
refl : ∀ x → x ≡ x
weak-K : {A : Set} {a b : A} (p q : a ≡ b) (α β : p ≡ q) → α ≡ β
weak-K (refl a) .(refl a) (refl .(refl a)) (refl .(refl a)) =
refl (refl (refl a))