2020-01-06 23:57:02 +00:00
|
|
|
// ignore-tidy-linelength
|
|
|
|
|
2019-12-03 18:07:00 +01:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
#![feature(doc_cfg)]
|
|
|
|
|
2020-01-06 23:57:02 +00:00
|
|
|
// @has 'foo/struct.Foo.html'
|
2020-08-09 13:25:18 +02:00
|
|
|
// @has '-' '//*[@class="stab portability"]' 'This is supported on crate feature sync only.'
|
2019-12-03 18:07:00 +01:00
|
|
|
#[doc(cfg(feature = "sync"))]
|
|
|
|
#[doc(cfg(feature = "sync"))]
|
|
|
|
pub struct Foo;
|
|
|
|
|
2020-01-06 23:57:02 +00:00
|
|
|
// @has 'foo/bar/struct.Bar.html'
|
2020-08-09 13:25:18 +02:00
|
|
|
// @has '-' '//*[@class="stab portability"]' 'This is supported on crate feature sync only.'
|
2019-12-03 18:07:00 +01:00
|
|
|
#[doc(cfg(feature = "sync"))]
|
|
|
|
pub mod bar {
|
|
|
|
#[doc(cfg(feature = "sync"))]
|
|
|
|
pub struct Bar;
|
|
|
|
}
|
2020-01-06 23:57:02 +00:00
|
|
|
|
|
|
|
// @has 'foo/baz/struct.Baz.html'
|
2020-08-09 13:25:18 +02:00
|
|
|
// @has '-' '//*[@class="stab portability"]' 'This is supported on crate feature sync and crate feature send only.'
|
2020-01-06 23:57:02 +00:00
|
|
|
#[doc(cfg(all(feature = "sync", feature = "send")))]
|
|
|
|
pub mod baz {
|
|
|
|
#[doc(cfg(feature = "sync"))]
|
|
|
|
pub struct Baz;
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has 'foo/qux/struct.Qux.html'
|
2020-08-09 13:25:18 +02:00
|
|
|
// @has '-' '//*[@class="stab portability"]' 'This is supported on crate feature sync and crate feature send only.'
|
2020-01-06 23:57:02 +00:00
|
|
|
#[doc(cfg(feature = "sync"))]
|
|
|
|
pub mod qux {
|
|
|
|
#[doc(cfg(all(feature = "sync", feature = "send")))]
|
|
|
|
pub struct Qux;
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has 'foo/quux/struct.Quux.html'
|
2020-08-09 13:25:18 +02:00
|
|
|
// @has '-' '//*[@class="stab portability"]' 'This is supported 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 = "sync", feature = "send", foo)))]
|
|
|
|
pub mod quux {
|
|
|
|
#[doc(cfg(all(feature = "send", feature = "sync", bar)))]
|
|
|
|
pub struct Quux;
|
|
|
|
}
|