lean4-htt/tests/lean/run/360_1.lean
2016-06-10 18:29:41 -07:00

11 lines
176 B
Text

exit
structure is_tr [class] (A : Type) : Type :=
(x : A)
theorem foo (B : Type) [H : is_tr B] : B :=
sorry
theorem bar (A : Type) (H : is_tr A) : A :=
begin
apply foo
end