lean4-htt/tests/lean/run/1192.lean
Leonardo de Moura 71226243fd fix: fixes #1192
2022-06-06 18:20:45 -07:00

5 lines
136 B
Text

inductive Foo : Nat → Type
| foo : Foo 0
inductive Bar: Foo n → Prop
| bar {t: Foo n} : (h : n = 0) → (h ▸ t) = .foo → Bar t