Skip to content

Commit

Permalink
Merge pull request #1811 from gaurarpit/bug1721
Browse files Browse the repository at this point in the history
Fixes the bug: #1721
  • Loading branch information
marioidival authored Feb 1, 2024
2 parents 7d6658f + bee791c commit e46c7b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/custom_types/structs.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,14 @@ fn main() {
// Instantiate a `Point`
let point: Point = Point { x: 10.3, y: 0.4 };
let another_point: Point = Point { x: 5.2, y: 0.2 };
// Access the fields of the point
println!("point coordinates: ({}, {})", point.x, point.y);
// Make a new point by using struct update syntax to use the fields of our
// other one
let bottom_right = Point { x: 5.2, ..point };
let bottom_right = Point { x: 5.2, ..another_point };
// `bottom_right.y` will be the same as `point.y` because we used that field
// from `point`
Expand Down

0 comments on commit e46c7b9

Please sign in to comment.