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.
19 lines
739 B
Text
19 lines
739 B
Text
import Lean
|
||
|
||
example : Option String := sorry
|
||
example : Maybe String := sorry
|
||
example : Result String Nat := sorry
|
||
example : Nonsense String Nat := sorry
|
||
example : MetaM String := sorry
|
||
|
||
set_option relaxedAutoImplicit false in
|
||
example : MetaM String := sorry
|
||
|
||
set_option relaxedAutoImplicit false in
|
||
example : Nonsense String := sorry
|
||
|
||
example (h₁ : α = β) (as : List α) (P : List β → Type) : P (h₁ ▸ as) := sorry
|
||
example {α β h} (h₁ : α = β) (as : List α) (P : List β → Type) : P (h ▸ as) := sorry
|
||
example (h₁ : α = β) (as : List α) (P : List β → Type) : P (h ▸ as) := sorry
|
||
set_option relaxedAutoImplicit false in
|
||
example (h₁ : α = β) (as : List α) (P : List β → Type) : P (hi ▸ as) := sorry
|