about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2022-09-01 14:31:41 +0200
committerGuillaume Gomez <guillaume.gomez@huawei.com>2022-09-01 14:31:41 +0200
commit68d0094305b4bebb96ef9d4c111fca256c1b0b4f (patch)
treeaaceeeaf5789850c82b212e196dc226fb6f06f2b
parentfb14ad06fab41a4e5c1436749dea21b67105c069 (diff)
downloadrust-68d0094305b4bebb96ef9d4c111fca256c1b0b4f.tar.gz
rust-68d0094305b4bebb96ef9d4c111fca256c1b0b4f.zip
Add regression test for #101129
-rw-r--r--src/test/rustdoc/doc_auto_cfg_nested_impl.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/test/rustdoc/doc_auto_cfg_nested_impl.rs b/src/test/rustdoc/doc_auto_cfg_nested_impl.rs
new file mode 100644
index 00000000000..4d73e0d829a
--- /dev/null
+++ b/src/test/rustdoc/doc_auto_cfg_nested_impl.rs
@@ -0,0 +1,24 @@
+// 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 {}
+}