parent
314062e941
commit
a2522fd316
1 changed files with 16 additions and 0 deletions
16
tests/lean/run/387.lean
Normal file
16
tests/lean/run/387.lean
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
--
|
||||
|
||||
axiom p {α β} : α → β → Prop
|
||||
axiom foo {α β} (a : α) (b : β) : p a b
|
||||
|
||||
example : p 0 0 := by simp [foo]
|
||||
example (a : Nat) : p a a := by simp [foo a]
|
||||
example : p 0 0 := by simp [foo 0]
|
||||
example : p 0 0 := by simp [foo 0 0]
|
||||
example : p 0 0 := by
|
||||
simp [foo 1] -- will not simplify
|
||||
simp [foo 0]
|
||||
example : p 0 0 ∧ p 1 1 := by
|
||||
simp [foo 1]
|
||||
traceState
|
||||
simp [foo 0]
|
||||
Loading…
Add table
Reference in a new issue