mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			224 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			224 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Make sure that we don't parse `extern crate async`
 | |
| // the front matter of a function leading us astray.
 | |
| 
 | |
| // check-pass
 | |
| 
 | |
| fn main() {}
 | |
| 
 | |
| #[cfg(FALSE)]
 | |
| extern crate async;
 | |
| 
 | |
| #[cfg(FALSE)]
 | |
| extern crate async as something_else;
 | 
