We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#show_unused
import Batteries def nul : Nat := 0 @[simp] theorem lemma1 : nul = 0 := rfl theorem uses_lemma1 : nul = 0 := by simp #show_unused uses_lemma1
In the above code sample, lemma1 is detected as unused, but removing lemma1 breaks the proof of uses_lemma1.
lemma1
uses_lemma1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the above code sample, lemma1 is detected as unused, but removing
lemma1
breaks the proof ofuses_lemma1
.The text was updated successfully, but these errors were encountered: