This PR ensures the pattern normalizer used in `grind` does violate assumptions made by the gadgets `Grind.genPattern` and `Grind.getHEqPattern`. Closes #11633
9 lines
136 B
Text
9 lines
136 B
Text
inductive MyBool where
|
|
| i0
|
|
| other
|
|
|
|
theorem ex (b: MyBool)
|
|
(h: b = .i0)
|
|
: match b with | .i0 => True | _ => False
|
|
:= by
|
|
grind
|