about summary refs log tree commit diff
path: root/tests/rustdoc-ui/lints/doc_cfg_hide.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rustdoc-ui/lints/doc_cfg_hide.rs')
-rw-r--r--tests/rustdoc-ui/lints/doc_cfg_hide.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/rustdoc-ui/lints/doc_cfg_hide.rs b/tests/rustdoc-ui/lints/doc_cfg_hide.rs
index 5d8791748a0..9a8bce2a92a 100644
--- a/tests/rustdoc-ui/lints/doc_cfg_hide.rs
+++ b/tests/rustdoc-ui/lints/doc_cfg_hide.rs
@@ -1,11 +1,7 @@
 #![feature(doc_cfg_hide)]
-#![deny(warnings)]
 
 #![doc(cfg_hide = "test")] //~ ERROR
-//~^ WARN
 #![doc(cfg_hide)] //~ ERROR
-//~^ WARN
 
 #[doc(cfg_hide(doc))] //~ ERROR
-//~^ WARN
 pub fn foo() {}