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.
25 lines
796 B
Lean4
25 lines
796 B
Lean4
-- test extending suggestions in a different module
|
|
|
|
/--
|
|
error: Invalid field `some`: The environment does not contain `String.some`, so it is not possible to project the field `some` from an expression
|
|
x
|
|
of type `String`
|
|
|
|
Hint: Perhaps you meant `String.contains` in place of `String.some`:
|
|
.s̵o̵m̵e̵c̲o̲n̲t̲a̲i̲n̲s̲
|
|
-/
|
|
#guard_msgs in example (x : String) := x.some fun _ => true
|
|
|
|
attribute [suggest_for String.some] String.any
|
|
|
|
/--
|
|
error: Invalid field `some`: The environment does not contain `String.some`, so it is not possible to project the field `some` from an expression
|
|
x
|
|
of type `String`
|
|
|
|
Hint: Perhaps you meant one of these in place of `String.some`:
|
|
[apply] `String.contains`
|
|
[apply] `String.any`
|
|
-/
|
|
#guard_msgs in example (x : String) := x.some fun _ => true
|