summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/doctest/doctest-multi-line-string-literal-25944.rs
blob: eec796e4fbf29f979bb27f460a3082dfb8fdd9ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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() {
}