parent
2f67140603
commit
9d32d7bcf5
2 changed files with 12 additions and 0 deletions
11
tests/lean/1062.lean
Normal file
11
tests/lean/1062.lean
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
example : if x = 0 then y + x = y else x ≠ 0 := by
|
||||
simp (config := { contextual := true })
|
||||
|
||||
example : if x = 0 then y + x = y else x ≠ 0 := by
|
||||
split
|
||||
simp_all
|
||||
simp_all
|
||||
|
||||
example : if x = 0 then y + x = y else x ≠ 0 := by
|
||||
simp (config := { contextual := true })
|
||||
split -- Error: no goals to be solved
|
||||
1
tests/lean/1062.lean.expected.out
Normal file
1
tests/lean/1062.lean.expected.out
Normal file
|
|
@ -0,0 +1 @@
|
|||
1062.lean:11:2-11:7: error: no goals to be solved
|
||||
Loading…
Add table
Reference in a new issue