closes #3229 --------- Co-authored-by: Scott Morrison <scott.morrison@gmail.com> Co-authored-by: Joachim Breitner <mail@joachim-breitner.de>
4 lines
205 B
Text
4 lines
205 B
Text
-- This example exposed a caching issue with the `discharge?` method used by the `split` tactic.
|
|
example (b : Bool) :
|
|
(if b then 1 else if b then 1 else 0) = (if b then 1 else 0) := by
|
|
split <;> rfl
|