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
The following examples shows No Goals on the line after finishing the first subgoal.
example : True ∧ True := by
constructor
· trivial
--^ the tactic state shows "No goals" anywhere on this line and the previous line
trivial
example : True ∧ True := by
apply id
-- correct goal state at the start of this line (unindented)
constructor
· trivial
-- "No goals" at the start of this line (unindented)
trivial
It should show the same goal state as the following examples
example : True ∧ True := by
constructor
· trivial
--^ correct goal stateexample : True ∧ True := by
constructor
· trivial
trivial
--^ correct goal state
Note: this seems to only affect subgoals that were proven in one line:
example : True ∧ True := by
constructor
· apply id
trivial
--^ correct goal-state
trivial
Prerequisites
Please put an X between the brackets as you perform the following steps:
https://github.com/leanprover/lean4/issues
Avoid dependencies to Mathlib or Batteries.
https://live.lean-lang.org/#project=lean-nightly
(You can also use the settings there to switch to “Lean nightly”)
Description
The following examples shows
No Goals
on the line after finishing the first subgoal.It should show the same goal state as the following examples
Note: this seems to only affect subgoals that were proven in one line:
Related: #2881
Impact
Add 👍 to issues you consider important. If others are impacted by this issue, please ask them to add 👍 to it.
The text was updated successfully, but these errors were encountered: