]> git.lizzy.rs Git - rust.git/blob - tests/pretty/blank-lines.rs
Rollup merge of #107819 - clubby789:x-py-root, r=jyn514
[rust.git] / tests / pretty / blank-lines.rs
1 // compile-flags: --crate-type=lib
2
3 // pp-exact
4 fn f() -> [isize; 3] {
5     let picard = 0;
6
7     let data = 1;
8
9     let worf = 2;
10
11
12     let enterprise = [picard, data, worf];
13
14
15
16     return enterprise;
17 }