blob: 466faaccb376adc5f6c22d271df9902cc1e139af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
P =
fun e : option L => match e with
| Some cl => Some cl
| None => None
end
: option L -> option L
P is monomorphic
fun (m n p : nat) (H : S m <= S n + p) => le_S_n m (n + p) H
: forall m n p : nat, S m <= S n + p -> m <= n + p
fun n : nat => let x := A n in ?12 ?15:T n
: forall n : nat, T n
fun n : nat => ?20 ?23:T n
: forall n : nat, T n
|