lean4-htt/tests/lean/run/grind_split_data.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

14 lines
172 B
Text

module
inductive C where
| a | b | c
def f : C → Nat
| .a => 2
| .b => 3
| .c => 4
example : f .a > 1 := by
grind [f]
example : f x > 1 := by
grind [f, C]