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.
21 lines
897 B
Text
21 lines
897 B
Text
/-! # Ensure `rw` prioritizes the local context over the environment
|
|
|
|
This test ensures that `rw [foo]` looks for `foo` in the local context before it looks for a
|
|
constant named `foo` in the environment. See issue #2729.
|
|
-/
|
|
|
|
-- Introduce `foo` to the environment.
|
|
/-- A constant whose name should conflict with that of a local declaration. -/
|
|
def foo : List Nat := [0]
|
|
|
|
/-! ## Ensure that `foo` from the LCtx is used instead of the constant `foo` -/
|
|
|
|
example (A B : Prop) (foo : A ↔ B) (b : B) : A := by
|
|
rw [foo] -- should be interpreted as `foo : A ↔ B`, not `foo : List Nat`, and succeed
|
|
assumption
|
|
|
|
/-! ## Ensure that we can access the constant `foo` by writing `rw [_root_.foo]` -/
|
|
|
|
set_option linter.unusedVariables false in
|
|
example (A B : Prop) (foo : A ↔ B) : _root_.foo = [0] := by
|
|
rw [_root_.foo] -- should be interpreted as `foo : List Nat`, not `foo : A ↔ B`, and succeed
|