summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/reexport-stability-tags-deprecated-and-portability.rs
blob: a79d05904e31c4b16f367d0f433174b41f5efc6c (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#![crate_name = "foo"]
#![feature(doc_cfg)]

pub mod tag {
    #[deprecated(since = "0.1.8", note = "Use bar() instead")]
    pub trait Deprecated {}

    #[doc(cfg(feature = "sync"))]
    pub trait Portability {}

    #[deprecated(since = "0.1.8", note = "Use bar() instead")]
    #[doc(cfg(feature = "sync"))]
    pub trait Both {}

    pub trait None {}
}

// @has foo/mod1/index.html
pub mod mod1 {
    // @has - '//code' 'pub use tag::Deprecated;'
    // @has - '//span' 'Deprecated'
    // @!has - '//span' 'sync'
    pub use tag::Deprecated;
}

// @has foo/mod2/index.html
pub mod mod2 {
    // @has - '//code' 'pub use tag::Portability;'
    // @!has - '//span' 'Deprecated'
    // @has - '//span' 'sync'
    pub use tag::Portability;
}

// @has foo/mod3/index.html
pub mod mod3 {
    // @has - '//code' 'pub use tag::Both;'
    // @has - '//span' 'Deprecated'
    // @has - '//span' 'sync'
    pub use tag::Both;
}

// @has foo/mod4/index.html
pub mod mod4 {
    // @has - '//code' 'pub use tag::None;'
    // @!has - '//span' 'Deprecated'
    // @!has - '//span' 'sync'
    pub use tag::None;
}