We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80b6850 commit ad77642Copy full SHA for ad77642
src/test/pretty/record-trailing-comma.rs
@@ -3,6 +3,6 @@ type thing = {x: int, y: int,};
3
4
fn main() {
5
let sth = {x: 0, y: 1,};
6
- let sth2 = {y: 9 with sth};
+ let sth2 = {y: 9 .. sth};
7
assert sth.x + sth2.y == 9;
8
}
0 commit comments