You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rollup merge of rust-lang#126422 - Urgau:doctest-impl-non-local-def, r=fmease
Suggest using a standalone doctest for non-local impl defs
This PR tweaks the lint output of the `non_local_definitions` lint to suggest using a standalone doctest instead of a moving the `impl` def to an impossible place as was already done with `macro_rules!` case in rust-lang#124568.
Fixesrust-lang#126339
r? ```@fmease```
.without_trait = methods and associated constants are still usable outside the current expression, only `impl Local` and `impl dyn Local` can ever be private, and only if the type is nested in the same item as the `impl`
550
550
.with_trait = 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`
551
551
.bounds = `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
552
+
.doctest = make this doc-test a standalone test with its own `fn main() {"{"} ... {"}"}`
552
553
.exception = items in an anonymous const item (`const _: () = {"{"} ... {"}"}`) are treated as in the same scope as the anonymous const's declaration
553
554
.const_anon = use a const-anon item to suppress this lint
554
555
.macro_to_change = the {$macro_kind} `{$macro_to_change}` defines the non-local `impl`, and may need to be changed
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
11
+
|
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
18
+
|
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
20
+
= 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() { ... }`
22
+
= 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>
23
+
note: the lint level is defined here
24
+
--> $DIR/non-local-defs-impl.rs:11:9
25
+
|
26
+
LL | #![deny(non_local_definitions)]
27
+
| ^^^^^^^^^^^^^^^^^^^^^
28
+
29
+
error: aborting due to 1 previous error
30
+
31
+
Couldn't compile the test.
32
+
33
+
failures:
34
+
$DIR/non-local-defs-impl.rs - doctest (line 13)
35
+
36
+
test result: FAILED. 1 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in $TIME
0 commit comments