about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-9405.rs
blob: 74a56f4d2ef8456b98d5fa19012403f64d63be0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ check-pass

#![warn(clippy::useless_format)]
#![allow(clippy::print_literal)]

fn main() {
    println!(
        "\

            {}",
        "multiple skipped lines"
    );
}