08718e33dc
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
14 lines
226 B
Text
14 lines
226 B
Text
Import int
|
|
Check fun (A : Type) (a : A),
|
|
let b := a
|
|
in b
|
|
|
|
Variable g : Pi A : Type, A -> A
|
|
|
|
Definition f (A: Type) (a : A) : A :=
|
|
let b := g A a,
|
|
c := g A b
|
|
in c
|
|
|
|
Show f _ 10.
|
|
Show f _ (- 10).
|