rust/tests/source/issue-3270/one.rs

13 lines
149 B
Rust
Raw Normal View History

// rustfmt-version: One
pub fn main() {
/* let s = String::from(
"
hello
world
",
); */
assert_eq!(s, "\nhello\nworld\n");
}