Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
kim-em committed Jul 28, 2024
1 parent 1d4efa7 commit 51f6243
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/lean/run/starsAndBars.lean
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
@[simp] def List.count [DecidableEq α] : List α → α → Nat
| [], _ => 0
| a::as, b => if a = b then as.count b + 1 else as.count b

inductive StarsAndBars : Nat → Nat → Type where
| nil : StarsAndBars 0 0
| star : StarsAndBars s b → StarsAndBars (s+1) b

0 comments on commit 51f6243

Please sign in to comment.