mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 18:23:49 +00:00
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() {
|
||
|
}
|