mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			304 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			304 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| 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 {
 | |
|     }
 | |
| 
 | |
| }
 | 
