aboutsummaryrefslogtreecommitdiff
path: root/test-suite/output/Implicit.out
blob: ef7667936c69891e3264f78a32a4a165fb128176 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
compose S
     : (nat -> nat) -> nat -> nat
ex_intro (P:=fun _ : nat => True) (x:=0) I
     : ex (fun _ : nat => True)
d2 = fun x : nat => d1 (y:=x)
     : forall x x0 : nat, x0 = x -> x0 = x

Arguments d2 [x x0]%nat_scope
map id (1 :: nil)
     : list nat
map id' (1 :: nil)
     : list nat
map (id'' (A:=nat)) (1 :: nil)
     : list nat
fix f (x : nat) : option nat := match x with
                                | 0 => None
                                | S _ => x
                                end
     : nat -> option nat