Skip to content

Commit ad77642

Browse files
committed
Try to fix pretty-test breakage.
1 parent 80b6850 commit ad77642

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/pretty/record-trailing-comma.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ type thing = {x: int, y: int,};
33

44
fn main() {
55
let sth = {x: 0, y: 1,};
6-
let sth2 = {y: 9 with sth};
6+
let sth2 = {y: 9 .. sth};
77
assert sth.x + sth2.y == 9;
88
}

0 commit comments

Comments
 (0)