mirror of
https://github.com/leanprover/lean4.git
synced 2026-03-17 18:34:06 +00:00
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.
44 lines
1004 B
Lean4
44 lines
1004 B
Lean4
inductive Foo1 (F : {n : Nat} → Type) : Type where
|
|
| bar : Foo1 _
|
|
|
|
/-- info: @Foo1.bar : {F : {n : Nat} → Type} → Foo1 F -/
|
|
#guard_msgs in
|
|
#check @Foo1.bar
|
|
|
|
inductive Foo2 (F : {n : Nat} → Type) : Type where
|
|
| bar : Foo2 F
|
|
|
|
/-- info: @Foo2.bar : {F : {n : Nat} → Type} → Foo2 F -/
|
|
#guard_msgs in
|
|
#check @Foo2.bar
|
|
|
|
inductive Foo3 (F : {n : Nat} → Type) : Type where
|
|
| bar : Foo3 @F
|
|
|
|
/-- info: @Foo3.bar : {F : {n : Nat} → Type} → Foo3 F -/
|
|
#guard_msgs in
|
|
#check @Foo3.bar
|
|
|
|
inductive Bla1 (F : {n : Nat} → Type) : Type where
|
|
| mk : Bla1 _
|
|
| bar : Bla1 _ → Bla1 _
|
|
|
|
/-- info: @Bla1.bar : {F : {n : Nat} → Type} → Bla1 F → Bla1 F -/
|
|
#guard_msgs in
|
|
#check @Bla1.bar
|
|
|
|
mutual
|
|
|
|
inductive Boo1 (F : {n : Nat} → Type) : Type where
|
|
| mk : Boo1 _
|
|
| bar : Zoo1 _ → Boo1 F → Boo1 _
|
|
|
|
inductive Zoo1 (F : {n : Nat} → Type) : Type where
|
|
| bar : Boo1 _ → Zoo1 _
|
|
|
|
end
|
|
|
|
/-- info: @Boo1.bar : {F : {n : Nat} → Type} → Zoo1 F → Boo1 F → Boo1 F -/
|
|
#guard_msgs in
|
|
#check @Boo1.bar
|