mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			662 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			662 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(rustdoc_missing_doc_code_examples)] //~ ERROR missing code example in this documentation
 | |
| #![deny(rustdoc::missing_doc_code_examples)]
 | |
| 
 | |
| /// Some docs.
 | |
| //~^ ERROR missing code example in this documentation
 | |
| pub struct Foo;
 | |
| 
 | |
| /// And then, the princess died.
 | |
| //~^ ERROR missing code example in this documentation
 | |
| pub mod foo {
 | |
|     /// Or maybe not because she saved herself!
 | |
|     //~^ ERROR missing code example in this documentation
 | |
|     pub fn bar() {}
 | |
| }
 | |
| 
 | |
| // This impl is here to ensure the lint isn't emitted for foreign traits implementations.
 | |
| impl std::ops::Neg for Foo {
 | |
|     type Output = Self;
 | |
| 
 | |
|     fn neg(self) -> Self::Output {
 | |
|         Self
 | |
|     }
 | |
| }
 | 
