blob: 49d3399b972f5c83a8815cf7372cff82fe5d9c9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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 {
}
}
|