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.
19 lines
999 B
Plaintext
19 lines
999 B
Plaintext
notationPrecheck.lean:1:25-1:26: error: Unknown identifier `a` at quotation precheck
|
|
|
|
Note: You can use `set_option quotPrecheck false` to disable this check.
|
|
notationPrecheck.lean:4:16-4:19: error: no macro or `[quot_precheck]` instance for syntax kind `termB_` found
|
|
b x
|
|
This means we cannot eagerly check your notation/quotation for unbound identifiers; you can use `set_option quotPrecheck false` to disable this check.
|
|
notationPrecheck.lean:8:7-8:8: error: elaboration function for `termB_` has not been implemented
|
|
b x✝
|
|
notationPrecheck.lean:13:27-13:32: error: ambiguous notation with at least one interpretation that failed quotation precheck, possible interpretations
|
|
(«term_∧__1» `x "∧" `y)
|
|
Unknown identifier `y` at quotation precheck
|
|
|
|
Note: You can use `set_option quotPrecheck false` to disable this check.
|
|
|
|
(«term_∧_» `x "∧" `y)
|
|
Unknown identifier `y` at quotation precheck
|
|
|
|
Note: You can use `set_option quotPrecheck false` to disable this check.
|