12 lines
142 B
Rust
12 lines
142 B
Rust
// compile-flags:--test
|
|
|
|
/// ```
|
|
/// let a = r#"
|
|
/// foo
|
|
/// bar"#;
|
|
/// let b = "\nfoo\nbar";
|
|
/// assert_eq!(a, b);
|
|
/// ```
|
|
pub fn main() {
|
|
}
|