mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			323 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			323 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| //@ compile-flags: -Z unstable-options --check
 | |
| //@ normalize-stderr: "nightly|beta|1\.[0-9][0-9]\.[0-9]" -> "$$CHANNEL"
 | |
| 
 | |
| #![feature(rustdoc_missing_doc_code_examples)]
 | |
| //~^ WARN
 | |
| 
 | |
| #![warn(missing_docs)]
 | |
| #![warn(rustdoc::missing_doc_code_examples)]
 | |
| #![warn(rustdoc::all)]
 | |
| 
 | |
| pub fn foo() {}
 | |
| //~^ WARN
 | |
| //~^^ WARN
 | 
