blob: f24ebcd52acb694ba5e690cd21764a9e1c9a6fbe (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 | // Regression test for <https://github.com/rust-lang/rust/issues/101129>.
#![feature(doc_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 {}
}
 |