mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 15:05:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			240 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			240 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ unset-rustc-env:oopsie
 | 
						|
//@ unset-rustc-env:a""a
 | 
						|
 | 
						|
env![r#"oopsie"#];
 | 
						|
//~^ ERROR environment variable `oopsie` not defined at compile time
 | 
						|
 | 
						|
env![r#"a""a"#];
 | 
						|
//~^ ERROR environment variable `a""a` not defined at compile time
 | 
						|
 | 
						|
fn main() {}
 |