mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			201 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			201 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
static c: char = '\x10\x10';
 | 
						|
//~^ ERROR: character literal may only contain one codepoint
 | 
						|
 | 
						|
fn main() {
 | 
						|
    let ch: &str = '\x10\x10';
 | 
						|
    //~^ ERROR: character literal may only contain one codepoint
 | 
						|
}
 |