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.
30 lines
547 B
Text
30 lines
547 B
Text
def f : f → Bool := -- Error at second `f`
|
|
fun _ => true
|
|
|
|
mutual
|
|
|
|
def g : h → Bool := -- Error at `h`, `h` is not eligible to be an auto implicit because of the mutual block
|
|
fun _ => true
|
|
|
|
def h := List Nat
|
|
|
|
end
|
|
|
|
structure Bla (x : List Bla) where -- Error at second `Foo`
|
|
val : Nat
|
|
|
|
inductive Foo : List Foo -> Type -- Error at second `Foo`
|
|
| x : Foo []
|
|
|
|
mutual
|
|
inductive Ex1 : Ex2 → Type -- Error at `Ex2`
|
|
|
|
inductive Ex2 : Type
|
|
end
|
|
|
|
|
|
structure Bar :=
|
|
(x : Na)
|
|
(y : Nat := foobar) -- Error at `foobar`
|
|
|
|
#print Bar.mk
|