summaryrefslogtreecommitdiffstats
path: root/tests/pretty/blank-lines.rs
blob: b9153d0482c88976ce69359c9700d832048a29ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// compile-flags: --crate-type=lib

// pp-exact
fn f() -> [isize; 3] {
    let picard = 0;

    let data = 1;

    let worf = 2;


    let enterprise = [picard, data, worf];



    return enterprise;
}