mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			313 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			313 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| 
 | |
| // tests that the following code compiles, but produces a future-compatibility warning
 | |
| 
 | |
| fn main() {
 | |
|     let data = std::ptr::null();
 | |
|     let _ = &data as *const *const ();
 | |
|     if data.is_null() {}
 | |
|     //~^ WARNING type annotations needed
 | |
|     //~| WARNING this is accepted in the current edition
 | |
| }
 | 
