e51c4ad2e9
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
9 lines
189 B
Text
9 lines
189 B
Text
import data.nat data.prod
|
|
open nat prod
|
|
|
|
variable R : nat → nat → Prop
|
|
variable f (a b : nat) (H : R a b) : nat
|
|
axiom Rtrue (a b : nat) : R a b
|
|
|
|
|
|
check f 1 0 (Rtrue (pr1 (pair 1 0)) 0)
|