diff options
| author | bors <bors@rust-lang.org> | 2024-03-17 00:22:29 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-03-17 00:22:29 +0000 |
| commit | c8813ddd6d2602ae5473752031fd16ba70a6e4a7 (patch) | |
| tree | c094b073b5d053b80cc88758fa3104b06e34d706 /src | |
| parent | 4c1b9c3e2f402efe27a24e424c9b59aa2fa5c83f (diff) | |
| parent | caa6131ae5eff72259701f4402be6ee563d7b10e (diff) | |
| download | rust-c8813ddd6d2602ae5473752031fd16ba70a6e4a7.tar.gz rust-c8813ddd6d2602ae5473752031fd16ba70a6e4a7.zip | |
Auto merge of #122607 - fmease:rollup-ozl1eeq, r=fmease
Rollup of 9 pull requests Successful merges: - #117918 (Add `wasm_c_abi` `future-incompat` lint) - #121545 (fix attribute validation on associated items in traits) - #121720 (Split refining_impl_trait lint into _reachable, _internal variants) - #122270 (fix `long-linker-command-lines` failure caused by `rust.rpath=false`) - #122564 (Delegation: fix ICE on duplicated associative items) - #122577 (Remove obsolete parameter `speculative` from `instantiate_poly_trait_ref`) - #122601 (Optimize `ptr::replace`) - #122604 (Mention jieyouxu for changes to compiletest, run-make tests and the run-make-support library) - #122605 (rustc-metadata: Store crate name in self-profile of metadata_register_crate) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/lint-docs/src/groups.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tools/lint-docs/src/groups.rs b/src/tools/lint-docs/src/groups.rs index c5cd30ccc34..0c39f2fa601 100644 --- a/src/tools/lint-docs/src/groups.rs +++ b/src/tools/lint-docs/src/groups.rs @@ -16,6 +16,10 @@ static GROUP_DESCRIPTIONS: &[(&str, &str)] = &[ ("rust-2018-compatibility", "Lints used to transition code from the 2015 edition to 2018"), ("rust-2021-compatibility", "Lints used to transition code from the 2018 edition to 2021"), ("rust-2024-compatibility", "Lints used to transition code from the 2021 edition to 2024"), + ( + "refining-impl-trait", + "Detects refinement of `impl Trait` return types by trait implementations", + ), ]; type LintGroups = BTreeMap<String, BTreeSet<String>>; |
