We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f635b69 commit 674dd31Copy full SHA for 674dd31
test/lint_unreachableTactic.lean
@@ -1,5 +1,12 @@
1
import Batteries.Linter.UnreachableTactic
2
3
+-- The warning generated by `linter.unreachableTactic` is not suppressed by `#guard_msgs`,
4
+-- because the linter is run on `#guard_msgs` itself. This is a known issue, see
5
+-- https://leanprover.zulipchat.com/#narrow/stream/348111-batteries/topic/unreachableTactic.20linter.20not.20suppressed.20by.20.60.23guard_msgs.60
6
+-- We jump through an extra hoop here to silence the warning.
7
+set_option linter.unreachableTactic false in
8
+#guard_msgs(drop warning) in
9
+set_option linter.unreachableTactic true in
10
/--
11
warning: this tactic is never executed
12
note: this linter can be disabled with `set_option linter.unreachableTactic false`
0 commit comments