mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-28 11:07:42 +00:00
14 lines
243 B
Rust
14 lines
243 B
Rust
![]() |
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`]
|
||
|
}
|