Skip to content

Commit 684d945

Browse files
bstriebrson
authored andcommitted
Fix a pprint test for fixed-length vecs
1 parent ac81fff commit 684d945

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/pretty/blank-lines.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// pp-exact
2-
fn f() -> [int]/3 {
2+
fn f() -> [int * 3] {
33
let picard = 0;
44

55
let data = 1;
66

77
let worf = 2;
88

99

10-
let enterprise = [picard, data, worf]/_;
10+
let enterprise = [picard, data, worf];
1111

1212

1313

0 commit comments

Comments
 (0)