about summary refs log tree commit diff
path: root/compiler/rustc_serialize/src/lib.rs
diff options
context:
space:
mode:
author5225225 <5225225@mailbox.org>2022-08-18 19:27:29 +0100
committer5225225 <5225225@mailbox.org>2022-08-18 19:29:02 +0100
commit09ea9f0a87be489250bdb8d9171c7deb20fd04b1 (patch)
tree69056d09535f80d4056ceb3c0968bf0fb3c2303e /compiler/rustc_serialize/src/lib.rs
parentbb99e6fdd99b0a9a9f75bc60b0995b4ef8e752ab (diff)
downloadrust-09ea9f0a87be489250bdb8d9171c7deb20fd04b1.tar.gz
rust-09ea9f0a87be489250bdb8d9171c7deb20fd04b1.zip
Add diagnostic translation lints to crates that don't emit them
Diffstat (limited to 'compiler/rustc_serialize/src/lib.rs')
-rw-r--r--compiler/rustc_serialize/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_serialize/src/lib.rs b/compiler/rustc_serialize/src/lib.rs
index e606f427335..079d44bac68 100644
--- a/compiler/rustc_serialize/src/lib.rs
+++ b/compiler/rustc_serialize/src/lib.rs
@@ -18,6 +18,8 @@ Core encoding and decoding interfaces.
 #![feature(new_uninit)]
 #![cfg_attr(test, feature(test))]
 #![allow(rustc::internal)]
+#![deny(rustc::untranslatable_diagnostic)]
+#![deny(rustc::diagnostic_outside_of_impl)]
 
 pub use self::serialize::{Decodable, Decoder, Encodable, Encoder};