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
I'm working with the Dafny intergration for VSCode (v3.3.1) and I have upgraded to the latest version of Dafny (4.7.0)
Reproducing steps
Open VSCode with Dafny Integration enabled
Place the following code:
method Main() {
assume 1+1==2;
}
Wait for assume statement has no {:axiom} annotationVerifier[r_assume_statement_without_axiom](https://dafny.org/dafny/HowToFAQ/Errors#r_assume_statement_without_axiom) warning to show up.
Apply "insert {:axiom}" quick-fix
Obtain the following code
method Main() {
{:axiom}assume 1+1==2;
}
Expected behaviour
I would expect the axiom annotation to show up in the intended spot as such:
method Main() {
assume {:axiom} 1+1==2;
}
Let me know if there is any further information I should add.
The text was updated successfully, but these errors were encountered:
Info
I'm working with the Dafny intergration for VSCode (v3.3.1) and I have upgraded to the latest version of Dafny (4.7.0)
Reproducing steps
assume statement has no {:axiom} annotationVerifier[r_assume_statement_without_axiom](https://dafny.org/dafny/HowToFAQ/Errors#r_assume_statement_without_axiom)
warning to show up.Expected behaviour
I would expect the axiom annotation to show up in the intended spot as such:
Let me know if there is any further information I should add.
The text was updated successfully, but these errors were encountered: