2019-12-03 17:07:00 +00:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
#![feature(doc_cfg)]
|
|
|
|
|
2020-08-18 20:19:02 +00:00
|
|
|
// @has 'foo/index.html'
|
2023-02-08 02:00:18 +00:00
|
|
|
// @matches '-' '//*[@class="item-name"]//*[@class="stab portability"]' '^sync$'
|
|
|
|
// @has '-' '//*[@class="item-name"]//*[@class="stab portability"]/@title' 'Available on crate feature `sync` only'
|
2020-08-18 20:19:02 +00:00
|
|
|
|
2020-01-06 23:57:02 +00:00
|
|
|
// @has 'foo/struct.Foo.html'
|
2020-08-18 20:19:02 +00:00
|
|
|
// @has '-' '//*[@class="stab portability"]' 'sync'
|
2019-12-03 17:07:00 +00:00
|
|
|
#[doc(cfg(feature = "sync"))]
|
|
|
|
#[doc(cfg(feature = "sync"))]
|
2021-06-24 12:30:01 +00:00
|
|
|
/// my feature sync struct
|
2019-12-03 17:07:00 +00:00
|
|
|
pub struct Foo;
|
|
|
|
|
2020-08-18 20:19:02 +00:00
|
|
|
// @has 'foo/bar/index.html'
|
2022-04-14 23:03:56 +00:00
|
|
|
// @has '-' '//*[@class="stab portability"]' 'Available on crate feature sync only.'
|
2019-12-03 17:07:00 +00:00
|
|
|
#[doc(cfg(feature = "sync"))]
|
|
|
|
pub mod bar {
|
2020-10-06 18:48:01 +00:00
|
|
|
// @has 'foo/bar/struct.Bar.html'
|
2022-04-14 23:03:56 +00:00
|
|
|
// @has '-' '//*[@class="stab portability"]' 'Available on crate feature sync only.'
|
2019-12-03 17:07:00 +00:00
|
|
|
#[doc(cfg(feature = "sync"))]
|
|
|
|
pub struct Bar;
|
|
|
|
}
|
2020-01-06 23:57:02 +00:00
|
|
|
|
2020-08-18 20:19:02 +00:00
|
|
|
// @has 'foo/baz/index.html'
|
2022-04-14 23:03:56 +00:00
|
|
|
// @has '-' '//*[@class="stab portability"]' 'Available on crate features sync and send only.'
|
2020-01-06 23:57:02 +00:00
|
|
|
#[doc(cfg(all(feature = "sync", feature = "send")))]
|
|
|
|
pub mod baz {
|
2020-10-06 18:48:01 +00:00
|
|
|
// @has 'foo/baz/struct.Baz.html'
|
2022-04-14 23:03:56 +00:00
|
|
|
// @has '-' '//*[@class="stab portability"]' 'Available on crate features sync and send only.'
|
2020-01-06 23:57:02 +00:00
|
|
|
#[doc(cfg(feature = "sync"))]
|
|
|
|
pub struct Baz;
|
|
|
|
}
|
|
|
|
|
2020-10-06 18:48:01 +00:00
|
|
|
// @has 'foo/qux/index.html'
|
2022-04-14 23:03:56 +00:00
|
|
|
// @has '-' '//*[@class="stab portability"]' 'Available on crate feature sync only.'
|
2020-01-06 23:57:02 +00:00
|
|
|
#[doc(cfg(feature = "sync"))]
|
|
|
|
pub mod qux {
|
2020-10-06 18:48:01 +00:00
|
|
|
// @has 'foo/qux/struct.Qux.html'
|
2022-04-14 23:03:56 +00:00
|
|
|
// @has '-' '//*[@class="stab portability"]' 'Available on crate features sync and send only.'
|
2020-01-06 23:57:02 +00:00
|
|
|
#[doc(cfg(all(feature = "sync", feature = "send")))]
|
|
|
|
pub struct Qux;
|
|
|
|
}
|
|
|
|
|
2020-08-18 20:19:02 +00:00
|
|
|
// @has 'foo/quux/index.html'
|
2022-04-14 23:03:56 +00:00
|
|
|
// @has '-' '//*[@class="stab portability"]' 'Available on crate feature sync and crate feature send and foo only.'
|
2020-01-06 23:57:02 +00:00
|
|
|
#[doc(cfg(all(feature = "sync", feature = "send", foo)))]
|
|
|
|
pub mod quux {
|
2020-10-06 18:48:01 +00:00
|
|
|
// @has 'foo/quux/struct.Quux.html'
|
2022-04-14 23:03:56 +00:00
|
|
|
// @has '-' '//*[@class="stab portability"]' 'Available on crate feature sync and crate feature send and foo and bar only.'
|
2020-01-06 23:57:02 +00:00
|
|
|
#[doc(cfg(all(feature = "send", feature = "sync", bar)))]
|
|
|
|
pub struct Quux;
|
|
|
|
}
|