blob: 1c1b557690f56d680b79af421cf67eec357ab522 (
plain)
1
2
3
4
5
6
|
From mathcomp Require Import ssreflect.
From Coq Require Export ssrfun.
From mathcomp Require Export ssrnotations.
Lemma Some_inj {T : nonPropType} : injective (@Some T).
Proof. by move=> x y []. Qed.
|