rust/tests/rustdoc/intra-doc/mod-relative.rs

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

18 lines
304 B
Rust
Raw Normal View History

pub mod wrapper {
pub struct Test<'a> {
data: &'a (),
}
impl<'a> Test<'a> {
pub fn do_test(&self) {}
}
//@ has mod_relative/wrapper/demo/index.html
//@ has - '//a/@href' '../struct.Test.html#method.do_test'
/// [`Test::do_test`]
pub mod demo {
}
}