Skip to content

Commit

Permalink
point to where to edit in exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
utaal committed Nov 2, 2024
1 parent b90f28d commit 1691db1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ struct Point {
impl Point {
fn move_x(self, dx: i64) -> (r: Point)
requires i64::MIN <= self.x + dx < i64::MAX,
ensures r == self
ensures r == self // <- change this
{
Point { x: self.x + dx }
}
Expand Down

0 comments on commit 1691db1

Please sign in to comment.