mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			222 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			222 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // compile-flags:--test
 | |
| 
 | |
| // https://github.com/rust-lang/rust/issues/25944
 | |
| #![crate_name="issue_25944"]
 | |
| 
 | |
| /// ```
 | |
| /// let a = r#"
 | |
| /// foo
 | |
| /// bar"#;
 | |
| /// let b = "\nfoo\nbar";
 | |
| /// assert_eq!(a, b);
 | |
| /// ```
 | |
| pub fn main() {
 | |
| }
 | 
