mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			152 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			152 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Syntactically, a foreign static may have a body.
 | |
| 
 | |
| //@ check-pass
 | |
| 
 | |
| fn main() {}
 | |
| 
 | |
| #[cfg(FALSE)]
 | |
| extern "C" {
 | |
|     static X: u8;
 | |
|     static mut Y: u8;
 | |
| }
 | 
