about summary refs log tree commit diff
path: root/tests/pretty/blank-lines.rs
blob: 89a95fcda2de95e60fc3e7a00d4fc3abbe905344 (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;
}