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

10 lines
209 B
Text

module
set_option warn.sorry false
abbrev sixteen : UInt32 := 16
theorem foo (x: UInt32) :
x.toNat ≤ sixteen.toNat := by sorry
theorem aa (x : UInt32) :
x.toNat ≤ sixteen.toNat := by
grind [foo]