Skip to content

Commit

Permalink
reintroduce rename error
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiomadge committed Oct 15, 2024
1 parent faff8df commit c66fa0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/DafnyLanguageServer/Handlers/DafnyHoverHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ string MoreInformation(Boogie.IToken? token, bool hoveringPostcondition) {
} else {
information += GetDescription(returnCounterexample.FailingReturn.Description);
}
information += MoreInformation(returnCounterexample.FailingAssert.tok, currentlyHoveringPostcondition);
information += MoreInformation(returnCounterexample.FailingFailingAssert.tok, currentlyHoveringPostcondition);
} else if (counterexample is CallCounterexample callCounterexample) {
if (assertionNode.StatusVerification == GutterVerificationStatus.Error &&
callCounterexample.FailingRequires.Description.SuccessDescription != "assertion always holds"
Expand Down

0 comments on commit c66fa0a

Please sign in to comment.