lean4-htt/tests/lean/421.lean
Leonardo de Moura 04b7924154 chore: fix tests
2021-09-16 10:29:38 -07:00

11 lines
178 B
Text

inductive Con : Type
| nil : Con
| foo : Con
inductive Conw : Con → Prop
| nilw : Conw Con.nil
example (x : Conw Con.nil) : x = Conw.nilw := by
cases x
trace_state
rfl