mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			474 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			474 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(stmt_expr_attributes)]
 | |
| 
 | |
| fn foo() -> String {
 | |
|     #[cfg(FALSE)]
 | |
|     [1, 2, 3].iter().map(|c| c.to_string()).collect::<String>() //~ ERROR expected `;`, found `#`
 | |
|     #[cfg(not(FALSE))]
 | |
|     String::new()
 | |
| }
 | |
| 
 | |
| fn bar() -> String {
 | |
|     #[attr]
 | |
|     [1, 2, 3].iter().map(|c| c.to_string()).collect::<String>() //~ ERROR expected `;`, found `#`
 | |
|     #[attr] //~ ERROR cannot find attribute `attr` in this scope
 | |
|     String::new()
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     println!("{}", foo());
 | |
| }
 | 
