lean2/tests/lean/uni_bug1.lean

10 lines
190 B
Text
Raw Normal View History

import data.nat data.prod
using 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)