7 lines
110 B
Text
7 lines
110 B
Text
inductive Foo (n: Nat)
|
|
| mk: n = 0 → Foo n
|
|
|
|
example (h: Foo x): x + 1 = 1 := by
|
|
cases h
|
|
subst x
|
|
rfl
|