rust/tests/rustdoc/remove-url-from-headings.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
512 B
Rust
Raw Permalink Normal View History

2022-02-25 22:57:01 +08:00
// It actually checks that the link is kept in the headings as expected now.
2020-01-15 02:21:10 +08:00
#![crate_name = "foo"]
//@ has foo/fn.foo.html
//@ has - '//a[@href="http://a.a"]' 'stuff'
//@ has - '//*[@id="implementing-stuff-somewhere"]' 'Implementing stuff somewhere'
//@ has - '//a[@href="http://b.b"]' 'one'
//@ has - '//*[@id="another-one-urg"]' 'Another one urg'
2020-01-15 02:21:10 +08:00
/// fooo
///
2020-01-18 02:49:03 +08:00
/// # Implementing [stuff](http://a.a "title") somewhere
2020-01-15 02:21:10 +08:00
///
/// hello
2020-01-16 21:26:43 +08:00
///
/// # Another [one][two] urg
///
2022-02-25 22:57:01 +08:00
/// [two]: http://b.b
2020-01-15 02:21:10 +08:00
pub fn foo() {}