lean4-htt/tests/lean/run/2942.lean
Joachim Breitner 0e49576fe4
feat: guard_msgs to treat trace messages separate (#8267)
This PR makes `#guard_msgs` to treat `trace` messages separate from
`info`, `warning` and `error`. It also introduce the ability to say
`#guard_msgs (pass info`, like `(drop info)` so far, and also adds
`(check info)` as the explicit form of `(info)`, for completeness.

Fixes #8266
2025-05-09 05:44:34 +00:00

68 lines
1.3 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/-!
# `congr` conv tactic with "over-applied" functions
-/
/-!
The function `g` is "over-applied". Previously, conv-mode `congr` failed.
-/
/--
trace: case a
a b : Nat
g : {α : Type} → αα
f : Nat → Nat
h : a = b
| f
case a
a b : Nat
g : {α : Type} → αα
f : Nat → Nat
h : a = b
| a
-/
#guard_msgs in
example (a b : Nat) (g : {α : Type} → αα) (f : Nat → Nat) (h : a = b) : g f a = g f b := by
conv =>
lhs
congr
trace_state
· rfl
· rw [h]
example (a b : Nat) (g : {α : Type} → αα) (f : Nat → Nat) (h : a = b) : g f a = g f b := by
conv =>
lhs
arg 2
rw [h]
/-!
While we are here, test `arg` too via `enter`.
-/
/--
trace: a b : Nat
g : {α : Type} → αα
f : Nat → Nat
h : a = b
| a
---
trace: a b : Nat
g : {α : Type} → αα
f : Nat → Nat
h : a = b
| f
---
trace: a b : Nat
g : {α : Type} → αα
f : Nat → Nat
h : a = b
| a
-/
#guard_msgs in
example (a b : Nat) (g : {α : Type} → αα) (f : Nat → Nat) (h : a = b) : g f a = g f b := by
conv =>
conv => enter [1,2]; trace_state
conv => enter [1,1]; trace_state
conv => enter [1,@3]; trace_state
conv => fail_if_success enter [1,@1] -- cannot select the `Type` argument due to dependence.
rw [h]