diff options
| author | 5225225 <5225225@mailbox.org> | 2022-08-18 19:27:29 +0100 |
|---|---|---|
| committer | 5225225 <5225225@mailbox.org> | 2022-08-18 19:29:02 +0100 |
| commit | 09ea9f0a87be489250bdb8d9171c7deb20fd04b1 (patch) | |
| tree | 69056d09535f80d4056ceb3c0968bf0fb3c2303e /compiler/rustc_parse_format/src | |
| parent | bb99e6fdd99b0a9a9f75bc60b0995b4ef8e752ab (diff) | |
| download | rust-09ea9f0a87be489250bdb8d9171c7deb20fd04b1.tar.gz rust-09ea9f0a87be489250bdb8d9171c7deb20fd04b1.zip | |
Add diagnostic translation lints to crates that don't emit them
Diffstat (limited to 'compiler/rustc_parse_format/src')
| -rw-r--r-- | compiler/rustc_parse_format/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_parse_format/src/lib.rs b/compiler/rustc_parse_format/src/lib.rs index 4890fade50f..e4842d2afb7 100644 --- a/compiler/rustc_parse_format/src/lib.rs +++ b/compiler/rustc_parse_format/src/lib.rs @@ -9,6 +9,8 @@ html_playground_url = "https://play.rust-lang.org/", test(attr(deny(warnings))) )] +#![deny(rustc::untranslatable_diagnostic)] +#![deny(rustc::diagnostic_outside_of_impl)] // We want to be able to build this crate with a stable compiler, so no // `#![feature]` attributes should be added. |
