16 lines
294 B
Rust
16 lines
294 B
Rust
|
// rustfmt-format_strings: true
|
||
|
// rustfmt-max_width: 80
|
||
|
|
||
|
fn test1() {
|
||
|
let expected = "\
|
||
|
but Doctor Watson has to have it taken out for him and dusted,
|
||
|
";
|
||
|
}
|
||
|
|
||
|
fn test2() {
|
||
|
let expected = "\
|
||
|
[Omitted long matching line]
|
||
|
but Doctor Watson has to have it taken out for him and dusted,
|
||
|
";
|
||
|
}
|