diff options
| author | Georg Semmler <github@weiznich.de> | 2024-10-23 07:48:57 +0200 |
|---|---|---|
| committer | Georg Semmler <github@weiznich.de> | 2024-12-18 07:10:12 +0100 |
| commit | ecb6fd8d3a98fb5d3c0347d1e15ac79032c63ef4 (patch) | |
| tree | 1bd7b71699b2840d575536b05420f0882d82c7a3 /compiler/rustc_passes/src/errors.rs | |
| parent | bfd02d8b36914d222b2ee6ed185cbf6bdba7d9d9 (diff) | |
| download | rust-ecb6fd8d3a98fb5d3c0347d1e15ac79032c63ef4.tar.gz rust-ecb6fd8d3a98fb5d3c0347d1e15ac79032c63ef4.zip | |
Check `#[diagnostic::do_not_recommend]` for arguments
This commit adds a check that verifies that no arguments are passed to `#[diagnostic::do_not_recommend]`. If we detect arguments we emit a warning.
Diffstat (limited to 'compiler/rustc_passes/src/errors.rs')
| -rw-r--r-- | compiler/rustc_passes/src/errors.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/rustc_passes/src/errors.rs b/compiler/rustc_passes/src/errors.rs index f71d5284052..5e7bfa5e3bb 100644 --- a/compiler/rustc_passes/src/errors.rs +++ b/compiler/rustc_passes/src/errors.rs @@ -20,6 +20,10 @@ use crate::lang_items::Duplicate; #[diag(passes_incorrect_do_not_recommend_location)] pub(crate) struct IncorrectDoNotRecommendLocation; +#[derive(LintDiagnostic)] +#[diag(passes_incorrect_do_not_recommend_args)] +pub(crate) struct DoNotRecommendDoesNotExpectArgs; + #[derive(Diagnostic)] #[diag(passes_autodiff_attr)] pub(crate) struct AutoDiffAttr { |
