lean4-htt/tests/lean/run/1458.lean
2017-03-16 10:31:21 -07:00

15 lines
280 B
Text

namespace repro1
structure s :=
(obj : Type)
(fn : ∀ {o : obj}, true)
#check λ t, s.fn t
end repro1
namespace repro2
constant s : Type
constant f : s → Type
constant mfn : Π (t : s) (o : f t), true
set_option pp.all true
#check λ t, mfn t _
end repro2