mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +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.
26 lines
716 B
Rust
26 lines
716 B
Rust
#![crate_name = "foo"]
|
|
|
|
// @has foo/index.html '//*[@class="desc docblock-short"]' 'fooo'
|
|
// @!has foo/index.html '//*[@class="desc docblock-short"]/h1' 'fooo'
|
|
// @has foo/fn.foo.html '//h2[@id="fooo"]/a[@href="#fooo"]' 'fooo'
|
|
|
|
/// # fooo
|
|
///
|
|
/// foo
|
|
pub fn foo() {}
|
|
|
|
// @has foo/index.html '//*[@class="desc docblock-short"]' 'mooood'
|
|
// @!has foo/index.html '//*[@class="desc docblock-short"]/h2' 'mooood'
|
|
// @has foo/foo/index.html '//h3[@id="mooood"]/a[@href="#mooood"]' 'mooood'
|
|
|
|
/// ## mooood
|
|
///
|
|
/// foo mod
|
|
pub mod foo {}
|
|
|
|
// @has foo/index.html '//*[@class="desc docblock-short"]/a[@href=\
|
|
// "https://nougat.world"]/code' 'nougat'
|
|
|
|
/// [`nougat`](https://nougat.world)
|
|
pub struct Bar;
|