Base for https://github.com/leanprover/lean4/pull/3279 --------- Co-authored-by: Scott Morrison <scott.morrison@gmail.com>
5 lines
148 B
Text
5 lines
148 B
Text
example (x : Fin n) (h : n = 0) : False :=
|
|
nomatch x, h
|
|
|
|
example (x : Nat) (f : Nat → Fin n) (h : n = 0 ∧ True) : False :=
|
|
nomatch f x, h.1
|