Sign in
fuchsia
/
third_party
/
rust
/
4e99dca8c35b37fcf097e7bd3c2b00abb7a64dfb
/
.
/
tests
/
pretty
/
blank-lines.rs
blob: 89a95fcda2de95e60fc3e7a00d4fc3abbe905344 [
file
] [
log
] [
blame
]
//@ 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
;
}