Skip to content

Commit

Permalink
lean file
Browse files Browse the repository at this point in the history
  • Loading branch information
kim-em committed Dec 6, 2023
1 parent 5dcf4e7 commit 3e8df60
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions test/Mathlib/test/H20231206.lean
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import Mathlib
import Mathlib.Tactic.GoalNormalization.NormalizeHyps

/--
info: theorem extracted_1 (h0 : ZMod (11 ^ 2)) (h1 : h0 = 24⁻¹) : ∃ k, h0 = k := sorry
---
warning: declaration uses 'sorry'
-/
#guard_msgs in
theorem problem
(b : ZMod (11^2))
(h₀ : b = 24⁻¹) :
∃ (k : ZMod (11^2)), b = k := by
normalize_hyps
extract_goal
sorry

0 comments on commit 3e8df60

Please sign in to comment.