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 Permalink 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 08:30:05 +08:00
return enterprise;
}