lean4-htt/tests/elab_fail/unsolvedIndCases.lean.out.expected
Garmelon 08eb78a5b2
chore: switch to new test/bench suite (#12590)
This PR sets up the new integrated test/bench suite. It then migrates
all benchmarks and some related tests to the new suite. There's also
some documentation and some linting.

For now, a lot of the old tests are left alone so this PR doesn't become
even larger than it already is. Eventually, all tests should be migrated
to the new suite though so there isn't a confusing mix of two systems.
2026-02-25 13:51:53 +00:00

45 lines
1 KiB
Text

unsolvedIndCases.lean:3:11-3:18: error: unsolved goals
case zero
⊢ 0 + 0 = 0
unsolvedIndCases.lean:4:11-4:18: error: unsolved goals
case succ
y : Nat
⊢ 0 + (y + 1) = y + 1
unsolvedIndCases.lean:8:14-8:21: error: unsolved goals
case zero
⊢ 0 + 0 = 0
unsolvedIndCases.lean:9:14-9:21: error: unsolved goals
case succ
y : Nat
ih : 0 + y = y
⊢ 0 + (y + 1) = y + 1
unsolvedIndCases.lean:14:11-14:18: error: unsolved goals
case succ
y : Nat
⊢ 0 + (y + 1) = y + 1
unsolvedIndCases.lean:18:18-18:25: error: unsolved goals
case ind
x y : Nat
h₁ : 0 < y ∧ y ≤ x
ih : y > 0 → (x - y) % y < y
h : y > 0
⊢ x % y < y
unsolvedIndCases.lean:19:18-19:25: error: unsolved goals
case base
x y : Nat
h₁ : ¬(0 < y ∧ y ≤ x)
h : y > 0
⊢ x % y < y
unsolvedIndCases.lean:23:18-23:25: error: unsolved goals
case ind
x y : Nat
h : y > 0
h₁ : 0 < y ∧ y ≤ x
ih : x = x - y → y = y → x % y < y
⊢ x % y < y
unsolvedIndCases.lean:24:18-24:25: error: unsolved goals
case base
x y : Nat
h : y > 0
h₁ : ¬(0 < y ∧ y ≤ x)
⊢ x % y < y