lean4-htt/tests/lean/2634.lean
2024-02-17 13:42:04 +00:00

17 lines
288 B
Text

example
{p: Prop}
(h: True → p)
: p := by
simp (discharger := skip) [h] -- simp made no progress
example
{p: Prop}
(h: True → p)
: p := by
simp (discharger := simp) [h]
example
{p: Prop}
(h: True → p)
: p := by
simp (discharger := trace "hello"; simp) [h]