You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When exact? succeeds, I expect it to give me something that closes the current goal.
However, in the following example, the exact? tactic suggests Try this: refine fun a a_1 => ?_.
defSubgroup' (G : Type) [Mul G] : Type := sorryinstance (G : Type) [Mul G] : Membership G (Subgroup' G) := sorrydefiSup' {G : Type} [Mul G] {ι : Type} (S : ι → Subgroup' G) : Subgroup' G := sorrytheoremmem_iSup_of_mem' {G : Type} [Mul G] {ι : Type} {S : ι → Subgroup' G} (i : ι) :
∀ {x : G}, x ∈ S i → x ∈ iSup' S := sorrytheoremfoo {G : Type}
[Mul G] {ι : Type} (S : ι → Subgroup' G)
{C : (x : G) → x ∈ iSup' S → Prop}
(hp : ∀ (i : ι) (x : G) (hx : x ∈ S i), C x (mem_iSup_of_mem' i hx))
(x y : G) :
(fun x ↦ ∃ (h : x ∈ iSup' S), C x h) x →
(fun x ↦ ∃ (h : x ∈ iSup' S ), C x h) y →
(fun x ↦ ∃ (h : x ∈ iSup' S), C x h) (x * y) := by
exact?
-- Try this: refine fun a a_1 => ?_-- (kernel) declaration has metavariables 'foo'
This occurs on current nightly and on leanprover/lean4:v4.15.0-rc1
The text was updated successfully, but these errors were encountered:
When
exact?
succeeds, I expect it to give me something that closes the current goal.However, in the following example, the
exact?
tactic suggestsTry this: refine fun a a_1 => ?_
.This occurs on current nightly and on
leanprover/lean4:v4.15.0-rc1
The text was updated successfully, but these errors were encountered: