mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			619 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			619 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // check-pass
 | |
| // compile-flags: --passes unknown-pass
 | |
| // error-pattern: the `passes` flag no longer functions
 | |
| 
 | |
| #![doc(no_default_passes)]
 | |
| //~^ WARNING attribute is deprecated
 | |
| //~| NOTE see issue #44136
 | |
| //~| HELP no longer functions; you may want to use `#![doc(document_private_items)]`
 | |
| #![doc(passes = "collapse-docs unindent-comments")]
 | |
| //~^ WARNING attribute is deprecated
 | |
| //~| NOTE see issue #44136
 | |
| //~| HELP no longer functions; you may want to use `#![doc(document_private_items)]`
 | |
| #![doc(plugins = "xxx")]
 | |
| //~^ WARNING attribute is deprecated
 | |
| //~| NOTE see issue #44136
 | |
| //~| WARNING no longer functions; see CVE
 | 
