lean4-htt/tests/lean/run/1247.lean
Leonardo de Moura 1fd2b17a92 fix: bug at addDependencies
closes #1247
2022-06-24 06:20:00 -07:00

8 lines
204 B
Text

inductive TestResult (p : Prop) where
| success : TestResult p
abbrev DecorationsOf (p : Prop) := Prop
def check (p' : DecorationsOf p) (x : TestResult p') : Unit :=
match x with
| .success => ()