2018-12-12 22:51:04 -05:00
|
|
|
// compile-flags: -Z force-unstable-if-unmarked
|
|
|
|
|
2020-07-15 04:13:25 +00:00
|
|
|
// Check that the unstable marker is not added for "rustc_private".
|
|
|
|
|
2022-08-12 00:44:07 -04:00
|
|
|
// @!matchesraw internal/index.html \
|
2021-06-18 00:33:42 +02:00
|
|
|
// '//*[@class="item-right docblock-short"]/span[@class="stab unstable"]'
|
2022-08-12 00:44:07 -04:00
|
|
|
// @!matchesraw internal/index.html \
|
2021-06-18 00:33:42 +02:00
|
|
|
// '//*[@class="item-right docblock-short"]/span[@class="stab internal"]'
|
|
|
|
// @matches - '//*[@class="item-right docblock-short"]' 'Docs'
|
2019-01-14 10:02:27 -05:00
|
|
|
|
2022-08-12 00:44:07 -04:00
|
|
|
// @!hasraw internal/struct.S.html '//*[@class="stab unstable"]'
|
|
|
|
// @!hasraw internal/struct.S.html '//*[@class="stab internal"]'
|
2018-12-12 22:51:04 -05:00
|
|
|
/// Docs
|
|
|
|
pub struct S;
|
|
|
|
|
|
|
|
fn main() {}
|