mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			226 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			226 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//! Regression test for https://github.com/rust-lang/rust/issues/10683
 | 
						|
 | 
						|
//@ run-pass
 | 
						|
 | 
						|
static NAME: &'static str = "hello world";
 | 
						|
 | 
						|
fn main() {
 | 
						|
    match &*NAME.to_ascii_lowercase() {
 | 
						|
        "foo" => {}
 | 
						|
        _ => {}
 | 
						|
    }
 | 
						|
}
 |