mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			271 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			271 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // aux-build:attributes-included.rs
 | |
| // check-pass
 | |
| 
 | |
| #![warn(unused)]
 | |
| 
 | |
| extern crate attributes_included;
 | |
| 
 | |
| use attributes_included::*;
 | |
| 
 | |
| #[bar]
 | |
| #[inline]
 | |
| /// doc
 | |
| #[foo]
 | |
| #[inline]
 | |
| /// doc
 | |
| fn foo() {
 | |
|     let a: i32 = "foo"; //~ WARN: unused variable
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     foo()
 | |
| }
 | 
