mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
894c98652c
This switches from using `<div>` to the more semantic `<ul>`, and using class names that rhyme with the classes the search results table uses.
19 lines
585 B
Rust
19 lines
585 B
Rust
// compile-flags: -Z force-unstable-if-unmarked
|
|
|
|
// Check that the unstable marker is not added for "rustc_private".
|
|
|
|
// @!matches internal/index.html \
|
|
// '//*[@class="desc docblock-short"]/span[@class="stab unstable"]' \
|
|
// ''
|
|
// @!matches internal/index.html \
|
|
// '//*[@class="desc docblock-short"]/span[@class="stab internal"]' \
|
|
// ''
|
|
// @matches - '//*[@class="desc docblock-short"]' 'Docs'
|
|
|
|
// @!has internal/struct.S.html '//*[@class="stab unstable"]' ''
|
|
// @!has internal/struct.S.html '//*[@class="stab internal"]' ''
|
|
/// Docs
|
|
pub struct S;
|
|
|
|
fn main() {}
|