summary refs log tree commit diff
path: root/src/test/rustdoc/duplicate-cfg.rs
blob: 505d6ee769ab3040c364f7f6830cac26c405f7ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![crate_name = "foo"]
#![feature(doc_cfg)]

// @has 'foo/index.html'
// @!has '-' '//*[@class="stab portability"]' 'feature="sync" and'
// @has '-' '//*[@class="stab portability"]' 'feature="sync"'
#[doc(cfg(feature = "sync"))]
#[doc(cfg(feature = "sync"))]
pub struct Foo;

#[doc(cfg(feature = "sync"))]
pub mod bar {
    #[doc(cfg(feature = "sync"))]
    pub struct Bar;
}