mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +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() {
|
|
}
|