lean2/tests/lean/hott/876.hlean
2015-12-10 10:55:27 -08:00

6 lines
131 B
Text

example : Σ(X : Type₀), X → unit :=
begin
fapply sigma.mk,
{ exact unit},
{ intro x, induction x, exact unit.star }
end