summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/doc_auto_cfg_nested_impl.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/doc_auto_cfg_nested_impl.rs')
-rw-r--r--src/test/rustdoc/doc_auto_cfg_nested_impl.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/rustdoc/doc_auto_cfg_nested_impl.rs b/src/test/rustdoc/doc_auto_cfg_nested_impl.rs
deleted file mode 100644
index 4d73e0d82..000000000
--- a/src/test/rustdoc/doc_auto_cfg_nested_impl.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-// Regression test for <https://github.com/rust-lang/rust/issues/101129>.
-
-#![feature(doc_auto_cfg)]
-#![crate_type = "lib"]
-#![crate_name = "foo"]
-
-pub struct S;
-pub trait MyTrait1 {}
-pub trait MyTrait2 {}
-
-// @has foo/struct.S.html
-// @has - '//*[@id="impl-MyTrait1-for-S"]//*[@class="stab portability"]' \
-// 'Available on non-crate feature coolstuff only.'
-#[cfg(not(feature = "coolstuff"))]
-impl MyTrait1 for S {}
-
-#[cfg(not(feature = "coolstuff"))]
-mod submod {
- use crate::{S, MyTrait2};
- // This impl should also have the `not(feature = "coolstuff")`.
- // @has - '//*[@id="impl-MyTrait2-for-S"]//*[@class="stab portability"]' \
- // 'Available on non-crate feature coolstuff only.'
- impl MyTrait2 for S {}
-}