mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			223 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			223 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() {
 | 
						|
}
 |