about summary refs log tree commit diff
path: root/library/test
diff options
context:
space:
mode:
authorMiguel Ojeda <ojeda@kernel.org>2024-07-28 16:37:58 +0200
committerMiguel Ojeda <ojeda@kernel.org>2024-07-29 00:58:45 +0200
commitdc815df1e1dc8c37956e41274c3276d053c271da (patch)
tree1d27c8aa671cf1eb2d259fda4f8b2141798c3a17 /library/test
parentcf87203f483751e0f6daa74b9d129c04feb48355 (diff)
downloadrust-dc815df1e1dc8c37956e41274c3276d053c271da.tar.gz
rust-dc815df1e1dc8c37956e41274c3276d053c271da.zip
Warn on `rustdoc::unescaped_backticks` for `core/alloc/std/test/proc_macro`
They are all clean now, so enable the lint to keep them clean going forward.

Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Diffstat (limited to 'library/test')
-rw-r--r--library/test/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/test/src/lib.rs b/library/test/src/lib.rs
index 71cb796b937..db87d923de0 100644
--- a/library/test/src/lib.rs
+++ b/library/test/src/lib.rs
@@ -24,6 +24,7 @@
 #![feature(panic_can_unwind)]
 #![feature(test)]
 #![allow(internal_features)]
+#![warn(rustdoc::unescaped_backticks)]
 
 pub use self::bench::{black_box, Bencher};
 pub use self::console::run_tests_console;