mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			371 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			371 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Test that cfg_attr doesn't emit any attributes when the
 | |
| // configuration variable is false. This mirrors `cfg-attr-multi-true.rs`
 | |
| 
 | |
| // build-pass (FIXME(62277): could be check-pass?)
 | |
| 
 | |
| #![warn(unused_must_use)]
 | |
| 
 | |
| #[cfg_attr(any(), deprecated, must_use)]
 | |
| struct Struct {}
 | |
| 
 | |
| impl Struct {
 | |
|     fn new() -> Struct {
 | |
|         Struct {}
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     Struct::new();
 | |
| }
 | 
