about summary refs log tree commit diff
path: root/tests/rustdoc/intra-doc/crate-relative.rs
blob: b4cae5e5585fe6c2e3fd1ac4323b8dfe816b39e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub struct Test<'a> {
    data: &'a (),
}

impl<'a> Test<'a> {
    pub fn do_test(&self) {}
}

//@ has crate_relative/demo/index.html
//@ has - '//a/@href' '../struct.Test.html#method.do_test'
pub mod demo {
    //! [`crate::Test::do_test`]
}