I defined the dependent type and trivial lemma as you can see below.
Require Import Coq.Reals.Reals.
Inductive Euc :nat -> Type:=
|RO : Euc 0
|Rn : forall {n:nat}, R -> Euc n -> Euc (S n).
Lemma ROEuc : forall t:(Euc 0), t = RO.
Proof.
intros. Admitted.
I don't know how to prove it.
Euc 0 is not an inductive type, so I can not use destruct t or induction t.
Please tell me how to prove it.