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