]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_index/src/lib.rs
Add diagnostic translation lints to crates that don't emit them
[rust.git] / compiler / rustc_index / src / lib.rs
index 7919e409253925a804346fdf36906041ca391a27..aa34673de81d77063902c7575db6f8979223a626 100644 (file)
@@ -1,11 +1,25 @@
+#![deny(rustc::untranslatable_diagnostic)]
+#![deny(rustc::diagnostic_outside_of_impl)]
 #![feature(allow_internal_unstable)]
 #![feature(bench_black_box)]
 #![feature(extend_one)]
+#![feature(let_else)]
 #![feature(min_specialization)]
+#![feature(new_uninit)]
 #![feature(step_trait)]
+#![feature(stmt_expr_attributes)]
 #![feature(test)]
-#![feature(let_else)]
 
 pub mod bit_set;
 pub mod interval;
 pub mod vec;
+
+pub use rustc_macros::newtype_index;
+
+/// Type size assertion. The first argument is a type and the second argument is its expected size.
+#[macro_export]
+macro_rules! static_assert_size {
+    ($ty:ty, $size:expr) => {
+        const _: [(); $size] = [(); ::std::mem::size_of::<$ty>()];
+    };
+}