mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 12:36:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			648 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			648 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![crate_name = "foo"]
 | |
| 
 | |
| //@ has foo/index.html '//dd' 'fooo'
 | |
| //@ !has foo/index.html '//dd//h1' 'fooo'
 | |
| 
 | |
| //@ has foo/fn.foo.html '//h2[@id="fooo"]' 'fooo'
 | |
| //@ has foo/fn.foo.html '//h2[@id="fooo"]/a[@href="#fooo"]' '§'
 | |
| /// # fooo
 | |
| ///
 | |
| /// foo
 | |
| pub fn foo() {}
 | |
| 
 | |
| //@ has foo/index.html '//dd' 'mooood'
 | |
| //@ !has foo/index.html '//dd//h2' 'mooood'
 | |
| 
 | |
| //@ has foo/foo/index.html '//h3[@id="mooood"]' 'mooood'
 | |
| //@ has foo/foo/index.html '//h3[@id="mooood"]/a[@href="#mooood"]' '§'
 | |
| /// ## mooood
 | |
| ///
 | |
| /// foo mod
 | |
| pub mod foo {}
 | |
| 
 | |
| //@ has foo/index.html '//dd/a[@href="https://nougat.world"]/code' 'nougat'
 | |
| 
 | |
| /// [`nougat`](https://nougat.world)
 | |
| pub struct Bar;
 | 
