Skip to content

Commit

Permalink
Fixes the bug: #1721
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurarpit committed Feb 1, 2024
1 parent 7d6658f commit bee791c
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 bee791c

Please sign in to comment.