Skip to content

Commit 2423e9e

Browse files
committed
Update rustdoc doctest non_local_defs impl test
1 parent 9195d65 commit 2423e9e

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

tests/rustdoc-ui/doctest/non-local-defs-impl.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
/// # use pub_trait::Trait;
1616
///
1717
/// struct Local;
18-
/// impl Trait for &Local {}
18+
///
19+
/// fn foo() {
20+
/// impl Trait for &Local {}
21+
/// }
1922
/// ```
2023
///
2124
/// But this shoudln't produce a warning:

tests/rustdoc-ui/doctest/non-local-defs-impl.stdout

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11

22
running 2 tests
33
test $DIR/non-local-defs-impl.rs - doctest (line 13) - compile ... FAILED
4-
test $DIR/non-local-defs-impl.rs - doctest (line 22) - compile ... ok
4+
test $DIR/non-local-defs-impl.rs - doctest (line 25) - compile ... ok
55

66
failures:
77

88
---- $DIR/non-local-defs-impl.rs - doctest (line 13) stdout ----
99
error: non-local `impl` definition, `impl` blocks should be written at the same level as their item
10-
--> $DIR/non-local-defs-impl.rs:18:1
10+
--> $DIR/non-local-defs-impl.rs:20:5
1111
|
12-
LL | impl Trait for &Local {}
13-
| ^^^^^-----^^^^^------
14-
| | |
15-
| | `&'_ Local` is not local
16-
| | help: remove `&` to make the `impl` local
17-
| `Trait` is not local
12+
LL | fn foo() {
13+
| -------- move the `impl` block outside of this function `foo` and up 3 bodies
14+
LL | impl Trait for &Local {}
15+
| ^^^^^-----^^^^^^-----
16+
| | |
17+
| | `Local` is not local
18+
| `Trait` is not local
1819
|
19-
= note: `impl` may be usable in bounds, etc. from outside the expression, which might e.g. make something constructible that previously wasn't, because it's still on a publicly-visible type
2020
= note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl`
21-
= help: make this doc-test a standalone test with its own `fn main() { ... }`
2221
= note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue <https://github.com/rust-lang/rust/issues/120363>
2322
note: the lint level is defined here
2423
--> $DIR/non-local-defs-impl.rs:11:9

0 commit comments

Comments
 (0)