rust/tests/pretty/blank-lines.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
204 B
Rust
Raw Normal View History

//@ 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];
2012-08-02 00:30:05 +00:00
return enterprise;
}