lean4-htt/tests/lean/run/compiler_proj_bug.lean
2019-03-21 15:11:05 -07:00

9 lines
122 B
Text

structure S :=
(a : Nat) (h : a > 0) (b : Nat)
def f (s : S) :=
s.b - s.a
#exit
#eval f {a := 5, b := 30, h := sorry }