2016-05-09 08:30:24 -05:00
|
|
|
// compile-flags:--test
|
|
|
|
|
2023-10-04 15:04:45 -05:00
|
|
|
// https://github.com/rust-lang/rust/issues/25944
|
2023-10-04 14:08:47 -05:00
|
|
|
#![crate_name="issue_25944"]
|
|
|
|
|
2016-05-09 08:30:24 -05:00
|
|
|
/// ```
|
|
|
|
/// let a = r#"
|
|
|
|
/// foo
|
|
|
|
/// bar"#;
|
|
|
|
/// let b = "\nfoo\nbar";
|
|
|
|
/// assert_eq!(a, b);
|
|
|
|
/// ```
|
|
|
|
pub fn main() {
|
|
|
|
}
|