lean4-htt/tests/lean/run/grind_exfalso.lean
Leonardo de Moura 6683d1eb91
chore: add module keyword to grind tests (#10036)
This PR also fixes missing `@[expose]` in grind support definitions.
2025-08-21 22:02:08 +00:00

12 lines
220 B
Text

module
example (x : Nat) (h : x < 0) : Nat → Nat := by
grind
example : False → Nat := by
grind
example : (x : Nat) → x < 0 → Nat := by
grind
example : (x : Nat) → x < 3 → x > 4 → Nat := by
grind