about summary refs log tree commit diff
path: root/tests/rustdoc/doctest/doctest-multi-line-string-literal-25944.rs
blob: 2b9c6119c67db3cb23de9c0ee047fc148f18d364 (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() {
}