mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +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`]
|
|
}
|